The original library won't compile on the Arduino Uno R4 WiFi, with the compiler citing the absence of the function "strupr". All I have done is write a very basic "string to uppercase" function and conditionally include it if one is not found.
Go to the Arduino libraries folder and clone this repo. Make sure you don't have the original library since they have the same names and will probably conflict.
This is the sample code for Gravity: Analog pH Sensor / Meter Kit V2, SKU:SEN0161-V2
Product Link (https://www.dfrobot.com/product-1782.html)
SKU: SEN0161-V2
Analog pH meter V2 is specifically designed to measure the pH of the solution and reflect the acidity or alkalinity. DFRobot ph sensor is commonly used in various applications such as aquaponics, aquaculture, and environmental water testing.
To use this library, first download the library file, paste it into the \Arduino\libraries directory, then open the examples folder and run the demo in the folder.
Depends library: https://github.com/DFRobot/DFRobot_EC
/**
* @fn calibration
* @brief Calibrate the calibration data
*
* @param voltage : Voltage value
* @param temperature : Ambient temperature
* @param cmd : enterph -> enter the PH calibration mode
* @n calph -> calibrate with the standard buffer solution, two buffer solutions(4.0 and 7.0) will be automaticlly recognized
* @n exitph -> save the calibrated parameters and exit from PH calibration mode
*/
void calibration(float voltage, float temperature,char* cmd); //calibration by Serial CMD
void calibration(float voltage, float temperature);
/**
* @fn readPH
* @brief Convert voltage to PH with temperature compensation
* @note voltage to pH value, with temperature compensation
*
* @param voltage : Voltage value
* @param temperature : Ambient temperature
* @return The PH value
*/
float readPH(float voltage, float temperature);
/**
* @fn begin
* @brief Initialization The Analog pH Sensor
*/
void begin();| MCU | Work Well | Work Wrong | Untested | Remarks |
|---|---|---|---|---|
| Arduino Uno | √ | |||
| Leonardo | √ | |||
| Meag2560 | √ | |||
| esp32 series | x |
- 2018/11/06 - Version 1.0.0 released.
Written by Jiawei Zhang(jiawei.zhang@dfrobot.com), 2018. (Welcome to our website)
