void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
pinMode(33, INPUT);
}
void loop() {
int value=analogRead(33);
Serial.print("the current value:");
Serial.println(value);
delay(500);
}