Replace DHT11 sensor with DHT22

This commit is contained in:
2023-04-20 13:26:41 +02:00
parent 8a61260bc0
commit 7bdf50a34f
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
#include <Arduino.h>
#include <DHT.h>
#define DHTTYPE DHT11
#define DHTTYPE DHT22
#define DHTPIN 4
DHT dht(DHTPIN, DHTTYPE);