forgot to save temp+humid script

This commit is contained in:
Sam
2023-09-06 23:22:47 +02:00
parent 24ce77933b
commit 254ac65977

View File

@@ -3,14 +3,11 @@
DHT11 dht11(18);
void setup()
{
void setup() {
Serial.begin(9600);
}
void loop()
{
void loop() {
float hoomid = dht11.readHumidity();
float temp = dht11.readTemperature();
@@ -22,5 +19,4 @@ void loop()
Serial.println(hoomid);
delay(2000);
}