mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-25 20:02:37 +03:00
* Wire Examples based on AVR ones of the same name * Overload for begin(), change in callback arg from int to size_t * Update master_reader.ino Astyle * Update master_writer.ino Astyle * Update slave_receiver.ino Remove warning * Update slave_receiver.ino Astyle
33 lines
842 B
C++
33 lines
842 B
C++
// Wire Slave Sender
|
|
// by devyte
|
|
// based on the example of the same name by Nicholas Zambetti <http://www.zambetti.com>
|
|
|
|
// Demonstrates use of the Wire library
|
|
// Sends data as an I2C/TWI slave device
|
|
// Refer to the "Wire Master Reader" example for use with this
|
|
|
|
// This example code is in the public domain.
|
|
|
|
|
|
#include <Wire.h>
|
|
|
|
#define SDA_PIN 4
|
|
#define SCL_PIN 5
|
|
const int16_t I2C_MASTER = 0x42;
|
|
const int16_t I2C_SLAVE = 0x08;
|
|
|
|
void setup() {
|
|
Wire.begin(SDA_PIN, SCL_PIN, I2C_SLAVE); // join i2c bus with address #8
|
|
Wire.onRequest(requestEvent); // register event
|
|
}
|
|
|
|
void loop() {
|
|
}
|
|
|
|
// function that executes whenever data is requested by master
|
|
// this function is registered as an event, see setup()
|
|
void requestEvent() {
|
|
Wire.write("hello\n"); // respond with message of 6 bytes
|
|
// as expected by master
|
|
}
|