import time
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Pi Pico!")
d = dht.DHT11(machine.Pin(15, Pin.IN))
relayOut = Pin(21, Pin.OUT)
temp = d.temperature()
humidity = d.humidity()
def mainTimer() :
pass
print(temp)
print(humidity)