You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
691 B
33 lines
691 B
#include <SimpleDHT.h>
|
|
|
|
// for DHT11,
|
|
// VCC: 5V or 3V
|
|
// GND: GND
|
|
// DATA: 2
|
|
int pinDHT11 = 2;
|
|
SimpleDHT11 dht11;
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
}
|
|
|
|
void loop() {
|
|
// start working...
|
|
Serial.println("=================================");
|
|
Serial.println("Sample DHT11...");
|
|
|
|
// read without samples.
|
|
byte temperature = 0;
|
|
byte humidity = 0;
|
|
if (dht11.read(pinDHT11, &temperature, &humidity, NULL)) {
|
|
Serial.print("Read DHT11 failed.");
|
|
return;
|
|
}
|
|
|
|
Serial.print("Sample OK: ");
|
|
Serial.print((int)temperature); Serial.print(" *C, ");
|
|
Serial.print((int)humidity); Serial.println(" %");
|
|
|
|
// DHT11 sampling rate is 1HZ.
|
|
delay(1000);
|
|
}
|
|
|