diff --git a/library.json b/library.json index 7fd813e..e5d0060 100644 --- a/library.json +++ b/library.json @@ -14,7 +14,7 @@ "maintainer": true } ], - "version": "1.1.1", + "version": "1.1.2", "frameworks": "arduino", "platforms": "*" } diff --git a/library.properties b/library.properties index 720b073..b510806 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Isolated ISE Probe Interface -version=1.1.1 +version=1.1.2 author=uFire maintainer=justin@ufire.co sentence=An isolated Ion Specific Electrode Probe Interface diff --git a/src/uFire_ORP.h b/src/uFire_ORP.h index d26dc23..62ebf56 100644 --- a/src/uFire_ORP.h +++ b/src/uFire_ORP.h @@ -40,14 +40,10 @@ class uFire_ORP : public uFire_ISE { uFire_ORP(uint8_t i2c_address) : uFire_ISE(i2c_address) {} #ifdef ESP32 - uFire_ORP(uint8_t sda, - uint8_t scl, - uint8_t i2c_address) : uFire_ISE(sda, scl, i2c_address) {} - - uFire_ORP(uint8_t sda, - uint8_t scl) : uFire_ISE(sda, scl) {} - + uFire_ORP(uint8_t sda, uint8_t scl, uint8_t i2c_address) : uFire_ISE(sda, scl, i2c_address) {} + uFire_ORP(uint8_t sda, uint8_t scl) : uFire_ISE(sda, scl) {} #endif // ifndef ESP32 + ~uFire_ORP(); float measureORP(); void setProbePotential(uint32_t potential); diff --git a/src/uFire_pH.h b/src/uFire_pH.h index cba471b..b6e205a 100644 --- a/src/uFire_pH.h +++ b/src/uFire_pH.h @@ -22,15 +22,6 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -/*! - \file ISE_Probe.cpp - \brief ISE Probe Class Implementation - - ufire.co for links to documentation, examples, and libraries - github.com/u-fire/ISE_Probe for feature requests, bug reports, and questions - questions@ufire.co to get in touch with someone - */ - #ifndef ISE_PH_H #define ISE_PH_H @@ -50,13 +41,10 @@ class uFire_pH : public uFire_ISE { uFire_pH(uint8_t i2c_address) : uFire_ISE(i2c_address) {} #ifdef ESP32 - uFire_pH(uint8_t sda, - uint8_t scl, - uint8_t i2c_address) : uFire_ISE(sda, scl, i2c_address) {} - - uFire_pH(uint8_t sda, - uint8_t scl) : uFire_ISE(sda, scl) {} + uFire_pH(uint8_t sda, uint8_t scl, uint8_t i2c_address) : uFire_ISE(sda, scl, i2c_address) {} + uFire_pH(uint8_t sda, uint8_t scl) : uFire_ISE(sda, scl) {} #endif // ifndef ESP32 + float measurepH(); float measurepH(float temp); float pHtomV(float pH);