This Spring, an adult cohort is exploring animatronics. We'll post helpful resources and our progress along the way here.
Week 1
Resources
- Arduino IDE
- Install ESP32 boards in Arduino
- Starter Code
#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() { digitalWrite(BLUE_LED, HIGH); digitalWrite(RED_LED, HIGH); delay(100); digitalWrite(BLUE_LED, LOW); digitalWrite(RED_LED, LOW); delay(100); }