Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5aba6dc

Browse files
committedFeb 16, 2019
added lab0
1 parent 362ce84 commit 5aba6dc

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎lab0/lab0.ino

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
void setup() {
2+
// put your setup code here, to run once:
3+
Serial.begin(9600);
4+
Serial.println("Hello, world!");
5+
//loop();
6+
}
7+
8+
void loop() {
9+
// put your main code here, to run repeatedly:
10+
for (int i = 0; i < 10; i++)
11+
{
12+
delay(100);
13+
Serial.println("Hello, world!");
14+
}
15+
}

0 commit comments

Comments
 (0)
Please sign in to comment.