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
commit 73af971de3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,12 @@
void setup(){
Serial.begin(9600);
Serial.println("Hello world!");
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:
}