#include void setup() { Wire.begin(2); // join i2c bus (address optional for master) } byte x = 0; void loop() { Wire.write(x); // sends one byte x++; delay(500); }