Isolated_ISE_Probe_Interface (community library)

Summary

Name Value
Name Isolated_ISE_Probe_Interface
Version 1.0.0
Installs 340
Author uFire
Maintainer justin@ufire.co
URL https://ufire.co
Download .tar.gz

An isolated Ion Specific Electrode Probe Interface Use it to measure pH, ORP, or any other voltage based probe

Example Build Testing

Device OS Version:

This table is generated from an automated build. Success only indicates that the code compiled successfully.

Library Read Me

This content is provided by the library maintainer and has not been validated or approved.

Isolated ISE Probe Interface

Use any Ion Specific Electrode

  • Measure pH with temperature compensation
  • Measure ORP and Eh
  • Raw mV
  • Temperature in Celsius/Fahrenheit
  • Electrically Isolated
What it is

An I2C slave device that can interface with any voltage based sensor such as a pH or ORP probe. There are pin headers available to connect a DS18B20 temperature sensor for automatic temperature compensation. The firmware on the device provides two calibration options, single or dual point.

Using it

There is extensive documentation on the use and setup of the device. The library to use it is in the Arduino IDE, Particle.io IDE and a python implementation for Raspberry Pi and MicroPython is also available.

#include "uFire_ISE.h"
ISE_Probe mv;
mv.measuremV();
#include "ISE_pH.h"
ISE_pH ph;
ph.measurepH();
#include "ISE_ORP.h"
ISE_ORP orp;
orp.measureORP();

####### Isolation

When different probes are connected to the same controlling device, they can cause interference. The environment also causes interference due to ground-loops or other electrical noise like pumps. Electrically isolating the probe from the controlling device can help to prevent it.

All μFire probe interfaces come with electrical isolation hardware which provides a stable, isolated power supply and I2C bus between the interface and your controlling device.

Browse Library Files