from machine import Pin import dht import time while True: sensor = dht.DHT11(Pin(26)) sensor.measure() print('Sıcaklık (Derece) = %.2f' % sensor.temperature()) print('Nem Oranı = %.2f' % sensor.humidity()) time.sleep(3)