From 69b6bdcbf4f88f94c94c246dc4bda108f567de62 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Fri, 15 Nov 2024 21:12:40 -0500 Subject: [PATCH] door.py: link to project with DHT code The DHT20 examples online are specifically for Arduino and ESP, but not RPI. This person wrote up something that can read it. Signed-off-by: Vincent Batts --- door.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/door.py b/door.py index 77d3b82..0ff6c77 100644 --- a/door.py +++ b/door.py @@ -6,6 +6,9 @@ from datetime import datetime # https://docs.python.org/3/library/datetime.html#datetime.datetime.now +# DHT22 with an rpi +# https://web.archive.org/web/20200819162120/http://www.home-automation-community.com/temperature-and-humidity-from-am2302-dht22-sensor-displayed-as-chart/ + # the door sensor door = Button(23) btn = Button(19)