21 lines
355 B
Text
21 lines
355 B
Text
|
|
|
|
#include <Wire.h>
|
|
|
|
void setup()
|
|
{
|
|
Wire.begin(); // join i2c bus (address optional for master)
|
|
}
|
|
|
|
byte x = 0;
|
|
|
|
void loop()
|
|
{
|
|
Wire.beginTransmission(72); // transmit to device #4
|
|
Wire.send("x is "); // sends five bytes
|
|
Wire.send(x); // sends one byte
|
|
Wire.endTransmission(); // stop transmitting
|
|
|
|
x++;
|
|
delay(500);
|
|
}
|