Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alantang888/pico-dht22-micropython-lib
DHT22 Library for Raspberry Pico with MicroPython
https://github.com/alantang888/pico-dht22-micropython-lib
dht dht22 micropython-lib pico pio raspberry-pico
Last synced: 25 days ago
JSON representation
DHT22 Library for Raspberry Pico with MicroPython
- Host: GitHub
- URL: https://github.com/alantang888/pico-dht22-micropython-lib
- Owner: alantang888
- Created: 2021-05-02T09:43:33.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-04T19:48:16.000Z (over 3 years ago)
- Last Synced: 2024-10-15T03:21:45.899Z (2 months ago)
- Topics: dht, dht22, micropython-lib, pico, pio, raspberry-pico
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DHT22 Library for Raspberry Pico with MicroPython
This library only work with Raspberry Pico.
Because it's using Pico's PIO and State Machine to communication with DHT sensor.
Since MicroPython on Pico should not fast enough to communication with DHT.It only tested with DHT22, I don't have DHT11. So not sure is it work. (On datasheet look like should work.)
Example: [dht22/main.py](dht22/main.py)
I understand I reinventing the wheel again. This just for me understand some basic Pico PIO.