Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MFS Animatronics SP25: Difference between revisions

From Randolph STEM
No edit summary
No edit summary
Line 6: Line 6:
* [https://www.youtube.com/watch?v=IY5CwwvIwYI Install] ESP32 boards in Arduino
* [https://www.youtube.com/watch?v=IY5CwwvIwYI Install] ESP32 boards in Arduino
** Starter Code
** Starter Code
<pre>
<syntaxhighlight lang="c++" line>
#define BLUE_LED 2  // LED connected to D2
#define BLUE_LED 2  // LED connected to D2
#define RED_LED 4  // LED connected to D4
#define RED_LED 4  // LED connected to D4
Line 18: Line 18:
void loop() {
void loop() {
}
}
</pre>
</syntaxhighlight>


= Week 2 =
= Week 2 =
= Week 3 =
= Week 3 =
= Week 4 =
= Week 4 =

Revision as of 17:48, 4 February 2025

This Spring, an adult cohort is exploring animatronics. We'll post helpful resources and our progress along the way here.

Week 1

Resources

#define BLUE_LED 2  // LED connected to D2
#define RED_LED 4  // LED connected to D4

void setup() {
  // Initialize the LED pins as outputs
  pinMode(BLUE_LED, OUTPUT);
  pinMode(RED_LED, OUTPUT);
}

void loop() {
}

Week 2

Week 3

Week 4