diff --git a/Examples/HelloWorld/HelloWorld.ino b/Examples/HelloWorld/HelloWorld.ino new file mode 100644 index 0000000..b2475f4 --- /dev/null +++ b/Examples/HelloWorld/HelloWorld.ino @@ -0,0 +1,8 @@ +void setup() { + Serial.begin(19200); +} + +void loop() { + Serial.println("Hello, world"); + delay(1000); +}