0
Hi did i wrote anything wrong?it just keep saying return code is not 0
Anyone help me to fix this?? #include <dht.h> dht DHT; #define DHT11_PIN 7 void setup(){ Serial.begin(9600); } void loop() { int chk = DHT.read11(DHT11_PIN); Serial.print("Temperature = "); Serial.println(DHT.temperature) Serial.print("Humidity = "); Serial.println(DHT.humidity); delay(1000); }
1 Odpowiedź
0
Semicolon on line 15?