Add HelloWorld example

This commit is contained in:
Starbeamrainbowlabs 2020-03-13 00:43:29 +00:00
parent 3311b90db1
commit ea2222ea2b
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
void setup() {
Serial.begin(19200);
}
void loop() {
Serial.println("Hello, world");
delay(1000);
}