@Roberto_b I hooked up the pH board on one of my development Pi, following is the sequence of command I am using (I have configured the pH board to use 0x44 address using the onboard address switches). Here is the run down of minimum set of things I have to do, the example is in handy i2cset, i2cget command, I'll port the equivalent in golang for reef-pi. Can you check if I am doing the right things:
- Reset the board
Code:i2cset -y 1 0x44 0x06
- Configuret the board for continuous reading
Code:i2cset -y 1 0x44 0x40 0x06
- Start the conversion process
Code:i2cset -y 1 0x44 0x08
- Ask for next reading
Code:i2cset -y 1 0x44 0x10
- Get the next value
Code:i2cget -y 1 0x44
Anyone in the thread who have used it sees any issue?
Seem ok, does it work ? in case try i2cdetect to be sure the board address / connections are ok.
