-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74fb653
commit 47f0075
Showing
4 changed files
with
8 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
"maintainer": true | ||
} | ||
], | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"frameworks": "arduino", | ||
"platforms": "*" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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); | ||
|