// Complete Instructions: https://RandomNerdTutorials.com/esp32-digital-inputs-outputs-arduino/
// set pin numbers
//const int buttonPin = 4; // the number of the pushbutton pin
const int ledPin = 19;
const int pin2= 32 ; // the number of the LED pin
// variable for storing the pushbutton status
//int buttonState = 0;
void setup() {
Serial.begin(115200);
// initialize the pushbutton pin as an input
//pinMode(buttonPin, INPUT);
// initialize the LED pin as an output
pinMode(ledPin, OUTPUT);
pinMode(pin2,OUTPUT);
}
void loop() {
// read the state of the pushbutton value
//buttonState = digitalRead(buttonPin);
// Serial.println(buttonState);
// check if the pushbutton is pressed.
// if it is, the buttonState is HIGH
//if (buttonState == HIGH) {
// turn LED on
digitalWrite(ledPin, HIGH);
digitalWrite(pin2, LOW);
Serial.println("HIGH");
delay(1000);
// } else {
// turn LED off
digitalWrite(ledPin, LOW);
Serial.println("LOW");
digitalWrite(pin2, HIGH);
delay(1000);
}
esp:0
esp:2
esp:4
esp:5
esp:12
esp:13
esp:14
esp:15
esp:16
esp:17
esp:18
esp:19
esp:21
esp:22
esp:23
esp:25
esp:26
esp:27
esp:32
esp:33
esp:34
esp:35
esp:3V3
esp:EN
esp:VP
esp:VN
esp:GND.1
esp:D2
esp:D3
esp:CMD
esp:5V
esp:GND.2
esp:TX
esp:RX
esp:GND.3
esp:D1
esp:D0
esp:CLK
led1:A
led1:C
led2:A
led2:C
r2:1
r2:2