aboutsummaryrefslogtreecommitdiff
path: root/arduino/main.cpp
blob: e25a2bdad2f7dc32cd2e43ead6535280468d4399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <Arduino.h>
#include <Wire.h>

void recv() {
	Wire.write("foo");
}

void setup() {
	Wire.begin(0x22);
	Wire.onRequest(recv);
}

void loop() { }