diff --git a/hello_world.ino b/hello_world.ino new file mode 100644 index 0000000..22846e0 --- /dev/null +++ b/hello_world.ino @@ -0,0 +1,12 @@ +// Hello world in the Arduino programming language + +void setup() +{ + Serial.begin(9600); + Serial.println("Hello, world!"); +} + +void loop() +{ + +}