Merge pull request #502 from yakutozcan/patch-1

FIX loop function
This commit is contained in:
Mike Donaghy
2019-07-23 07:30:01 -05:00
committed by GitHub

View File

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