Skip to content

Commit 23dd83d

Browse files
committed
Adding instruciton files and working on BasicSerial
1 parent c625947 commit 23dd83d

File tree

11 files changed

+36
-0
lines changed

11 files changed

+36
-0
lines changed

BasicSerial/BasicSerial.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+
4+
// start serial port at 9600 bps:
5+
// Necessary whenever you want to use Serial communication
6+
Serial.begin(9600);
7+
Serial.println("I print once");
8+
}
9+
10+
void loop() {
11+
// put your main code here, to run repeatedly:
12+
13+
Serial.println("I print again and again");
14+
15+
}
69.5 KB
Loading
21.4 KB
Loading

Instructions/Images/ArduinoIDE.PNG

21.5 KB
Loading

Instructions/Images/ArduinoIDE.xcf

105 KB
Binary file not shown.
27 KB
Loading
135 KB
Binary file not shown.
66.9 KB
Loading
343 KB
Binary file not shown.

Instructions/Images/Capture.PNG

59.7 KB
Loading

0 commit comments

Comments
 (0)