forgot to save temp+humid script
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
Reference in New Issue
Block a user