Hi Guys,
I create a circuit to control several servos with several Poti via I2C.
I use the standard I2C library and modify it.
The Slave Ardu expected values like:
“,2100a,” or “,1800b,”
It must be start and end with a comma.
It doesn’t work with the standard routine like this:
Wire.beginTransmission(8); // transmit to device #8
Wire.write(", ");
Wire.write(x);
Wire.write(",");
Wire.endTransmission(); // stop transmitting
How can I realize , that the Master Ardu send Value in this particular form ?
Iam Thankfull for any help