Files
hello-world/a/arduino.ino
Mike Donaghy 73af971de3 Merge pull request #502 from yakutozcan/patch-1
FIX loop function
2019-07-23 07:30:01 -05:00

13 lines
279 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:
}