#include void setup() { Wire.begin(42); // join i2c bus Serial.begin(9600); } void loop() { delay(100); Wire.write("hi"); Serial.println("sent"); }