// NTC
const int ntcPin = 34; // A good pin for analog input
const double Beta = 3950; // I think the Wokwi NTC has this Beta
const double Tnul = 298.15; // 25°C = 298.15K, the reference temperature for the NTC
const double Rnul = 10000; // a 10k NTC
const double Rresistor = 10000; // a 10k resistor to 3.3V
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}