from machine import Pin
import time
import dht
led = Pin(27, Pin.OUT)
while True:
led.on()
time.sleep(1)
led.off()
time.sleep(1)
from machine import Pin
import time
import dht
led = Pin(27, Pin.OUT)
while True:
led.on()
time.sleep(1)
led.off()
time.sleep(1)