Add HelloWorld example
This commit is contained in:
parent
3311b90db1
commit
ea2222ea2b
1 changed files with 8 additions and 0 deletions
8
Examples/HelloWorld/HelloWorld.ino
Normal file
8
Examples/HelloWorld/HelloWorld.ino
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
void setup() {
|
||||||
|
Serial.begin(19200);
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
Serial.println("Hello, world");
|
||||||
|
delay(1000);
|
||||||
|
}
|
Loading…
Reference in a new issue