void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("hello,ESP32");
pinMode(14, INPUT);
}
void loop() {
int value = analogRead(14);
Serial.println(value);
delay(100);
}
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("hello,ESP32");
pinMode(14, INPUT);
}
void loop() {
int value = analogRead(14);
Serial.println(value);
delay(100);
}