Files
hello-world/a/arduino.ino
Richie Bendall ad16f6d78a Normalize printed text
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-03-30 04:21:52 +13:00

13 lines
278 B
C++
Executable File

void setup() {
// put your setup code here, to run once:
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
//print message serial monitor
Serial.println("Hello World");
}
void loop() {
// put your main code here, to run repeatedly:
}