fixed DPIN variable

This commit is contained in:
K
2024-10-07 01:41:22 +05:30
parent ee9c946a01
commit dfe54c8b9a
+1 -1
View File
@@ -1,6 +1,6 @@
# Specify the pin you'll be connecting the data/signal PIN of DHT11 to here: # Specify the pin you'll be connecting the data/signal PIN of DHT11 to here:
PIN = 16 PIN = 16
DPIN = "D" + PIN DPIN = "D" + str(PIN)
import time import time
from board import PIN # By default I'm using GPIO PIN 16 from board import PIN # By default I'm using GPIO PIN 16