From ea2222ea2b1e10108750631516e146a29b036ad0 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 13 Mar 2020 00:43:29 +0000 Subject: [PATCH] Add HelloWorld example --- Examples/HelloWorld/HelloWorld.ino | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Examples/HelloWorld/HelloWorld.ino 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); +}