Directory Listing | |
---|---|
lab2a.ino
|
|
lab2bstud.ino
|
|
writeup.pdf
|
1
2
3
4
5
6
7
8
9
10
11
12
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
String what_to_print = "Print this once every 1000 ms\n";
Serial.print(what_to_print);
delay(1000);
}