Calibrate works?

This commit is contained in:
jan 2016-07-10 00:36:44 -07:00
commit cc711c6343
1104 changed files with 636510 additions and 75 deletions

View file

@ -0,0 +1,12 @@
void setup() {
Serial.begin(115200);
}
void loop() {
while (true) {
int in = Serial.read();
if (in != -1) {
Serial.write(in);
}
}
}