Detect Arduino 1.0

Arudino fixture for tests
This commit is contained in:
Fredrik Leijon
2011-11-17 18:18:35 +01:00
parent 2e653dda2f
commit 1182d9d328
3 changed files with 14 additions and 0 deletions

7
test/fixtures/hello.ino vendored Normal file
View File

@@ -0,0 +1,7 @@
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.print("Hello");
}