// Define the input and output pins
const int switchPin = 4;
const int ledPin = 2;
void setup() {
// Set the switch pin as an input
pinMode(switchPin, INPUT);
// Set the LED pin as an output
pinMode(ledPin, OUTPUT);
}
void loop() {
// Read the state of the switch
int switchState = digitalRead(switchPin);
// If the switch is turned on, turn on the LED
if (switchState == HIGH) {
digitalWrite(ledPin, HIGH);
} else {
digitalWrite(ledPin, LOW);
}
}
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23
led1:A
led1:C
r1:1
r1:2
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
r2:1
r2:2