from machine import Pin, time_pulse_us
from time import sleep, sleep_ms, sleep_us

def DHT11(gpio=0):
  bits=bytearray(40)
  Bytes=bytearray(5)
  pin=Pin(gpio)
  pin.init(Pin.OUT, Pin.PULL_DOWN)
  pin.value(0)
  sleep_ms(18)
  pin.value(1)
  sleep_us(30)
  pin.init(Pin.IN, Pin.PULL_UP)
  sleep_us(90) #80-100
  for i in range(40):
    bits[i]=time_pulse_us(pin,1)
  bitcnt=7
  ix=0
  for i in range(40):
    if bits[i] > 40: Bytes[ix] |= (1<<bitcnt)
    bitcnt-=1
    if bitcnt<0:
      bitcnt=7
      ix+=1
  sum=0
  for b in Bytes[0:4]: sum+=b
  return Bytes[2], Bytes[0], sum & 0xFF == Bytes[4]

if __name__=="__main__":
  for i in range(3):
    x=DHT11()
    T,H,OK=x
    print(T,H,OK,"Temp {:2d}ºC Humedad {:2d} %".format(T,H))
    sleep(0.2)
    
BOOTSELLED1239USBRaspberryPiPico©2020RP2-8020/21P64M15.00TTT
pico:GP0
pico:GP1
pico:GND.1
pico:GP2
pico:GP3
pico:GP4
pico:GP5
pico:GND.2
pico:GP6
pico:GP7
pico:GP8
pico:GP9
pico:GND.3
pico:GP10
pico:GP11
pico:GP12
pico:GP13
pico:GND.4
pico:GP14
pico:GP15
pico:GP16
pico:GP17
pico:GND.5
pico:GP18
pico:GP19
pico:GP20
pico:GP21
pico:GND.6
pico:GP22
pico:RUN
pico:GP26
pico:GP27
pico:GND.7
pico:GP28
pico:ADC_VREF
pico:3V3
pico:3V3_EN
pico:GND.8
pico:VSYS
pico:VBUS
dht1:VCC
dht1:SDA
dht1:NC
dht1:GND
r1:1
r1:2