Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <Wire.h>
- void setup() {
- Wire.begin(8);
- Wire.onRequest(enviar); // onRequest(void* func); especifica a função que sera chamada quando os dados forem requisitados a função deve ser: void func()
- }
- void loop() {
- delay(100);
- }
- void enviar() {
- Wire.write("Oila! "); // write(dados)
- }
Add Comment
Please, Sign In to add comment