š Datasheet PDF DOC HTML
š¦ Arduino IDE and PlatformIO library PDF DOC HTML
1.
š½ Get Arduino
Install the Arduino IDE
2.
š¦ Install the library
Start the Arduino IDE, press the Sketch menu, and then Include Library > Manage Libraries
- Search for
Microfire
and install the library calledMicrofire Mod-pH
3.
š Connect everything
- Connect the probe
- Make the I2C connections:
- Mod-pH SDA to controller SDA
- Mod-pH SCL to controller SCL
- Mod-pH GND to controller ground
- Mod-pH VCC to controller 3.3 or 5-volt
4.
š° Write some code
Below is the Basic example. It can be found in File > Examples > Microfire_Mod-pH > Basic
in the Arduino IDE.
// include the header file
#include <Microfire_Mod-pH.h>
Microfire::Mod_pH::i2c ph;
void setup()
{
// start Serial and I2C
Serial.begin(9600);
Wire.begin();
// start the sensor
ph.begin();
}
void loop()
{
// take a pH measurement
ph.measurepH(ph.tempC);
// display the results
Serial.println((String) ph.pH + " pH");
delay(1000);
}
5.
ā”ļø Upload the code
- Tell the Arduino IDE what board you are using. Press
Tools > Board
and find yours in the menu - Press the upload button
6.
š View the output
- Open the Serial Monitor by pressing
Tools > Serial Monitor
- The measurements should be displayed in the monitor, with updates every second