Skip to content

Commit

Permalink
add reference code for s1
Browse files Browse the repository at this point in the history
  • Loading branch information
tatarchm committed Sep 7, 2024
1 parent b717ec9 commit 0859edb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/sessions/s1.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,28 @@

- Everyone shares one thought about today's session

## Reference code

```c
void setup() {
Serial.begin(115200);
pinMode(13, OUTPUT);
}

void loop() {
Serial.println("Hello, world!");

digitalWrite(13, HIGH);
delay(200);
digitalWrite(13, LOW);
delay(200);

tone(5, 440, 500);
delay(1000);
}

```

## Random thoughts/goals

- figure out the kids' English level

0 comments on commit 0859edb

Please sign in to comment.