Simple snap together case for a Raspberry Pi Pico W with a DHT22 temperature and humidity sensor.
I programmed the Pico via ESPHome to provide the temperature and humidity readings to my Home Assistant installation.
https://esphome.io/components/sensor/dht
Additional code added to ESPHome default settings:
sensor:
- platform: dht
model: AM2302
pin:
number: GPIO2
mode:
input: true
pullup: false
temperature:
name: "Outside Temperature"
humidity:
name: "Outside Humidity"
update_interval: 60sThe author marked this model as their own original creation.