// Wire Slave Receiver // by Nicholas Zambetti // Demonstrates use of the Wire library // Receives data as an I2C/TWI slave device // Refer to the "Wire Master Writer" example for use with this // Created 29 March 2006 #include #define LED_OUT 13 int x; void setup() { Wire.begin(4); // join i2c bus with address #4 Wire.onReceive(receiveEvent); // register event Serial.begin(9600); // start serial for output pinMode(LED_OUT, OUTPUT); digitalWrite(LED_OUT, LOW); x = 0; } void loop() { if (x > 0) { for (int i=0; i