print("Hello, ESP32!") import machine import dht d= dht.DHT11(machine.Pin(5)) d.measure() t=d.temperature() print(t)