Skip to content

Commit

Permalink
format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
justind000 committed Oct 7, 2019
1 parent 74fb653 commit 47f0075
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 24 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"maintainer": true
}
],
"version": "1.1.1",
"version": "1.1.2",
"frameworks": "arduino",
"platforms": "*"
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Isolated ISE Probe Interface
version=1.1.1
version=1.1.2
author=uFire
maintainer[email protected]
sentence=An isolated Ion Specific Electrode Probe Interface
Expand Down
10 changes: 3 additions & 7 deletions src/uFire_ORP.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
18 changes: 3 additions & 15 deletions src/uFire_pH.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
[email protected] to get in touch with someone
*/

#ifndef ISE_PH_H
#define ISE_PH_H

Expand All @@ -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);
Expand Down

0 comments on commit 47f0075

Please sign in to comment.