GY-63_MS5611/libraries/DHTlib/examples/dht11_test/dht11_test.ino

66 lines
1.3 KiB
Arduino
Raw Normal View History

2013-08-28 07:57:45 -04:00
//
// FILE: dht11_test.ino
// AUTHOR: Rob Tillaart
// PURPOSE: DHT library test sketch for DHT11 && Arduino
2021-01-29 06:31:58 -05:00
// URL: https://github.com/RobTillaart/DHTlib
2021-12-16 10:44:08 -05:00
2013-08-28 07:57:45 -04:00
#include <dht.h>
dht DHT;
2021-12-16 10:44:08 -05:00
#define DHT11_PIN 5
2013-08-28 07:57:45 -04:00
void setup()
{
Serial.begin(115200);
Serial.println("DHT TEST PROGRAM ");
Serial.print("LIBRARY VERSION: ");
Serial.println(DHT_LIB_VERSION);
Serial.println();
Serial.println("Type,\tstatus,\tHumidity (%),\tTemperature (C)");
}
2021-12-16 10:44:08 -05:00
2013-08-28 07:57:45 -04:00
void loop()
{
// READ DATA
Serial.print("DHT11, \t");
int chk = DHT.read11(DHT11_PIN);
switch (chk)
{
case DHTLIB_OK:
2021-12-16 10:44:08 -05:00
Serial.print("OK,\t");
break;
2013-08-28 07:57:45 -04:00
case DHTLIB_ERROR_CHECKSUM:
2021-12-16 10:44:08 -05:00
Serial.print("Checksum error,\t");
break;
2013-08-28 07:57:45 -04:00
case DHTLIB_ERROR_TIMEOUT:
2021-12-16 10:44:08 -05:00
Serial.print("Time out error,\t");
break;
2014-10-23 10:15:26 -04:00
case DHTLIB_ERROR_CONNECT:
Serial.print("Connect error,\t");
break;
case DHTLIB_ERROR_ACK_L:
Serial.print("Ack Low error,\t");
break;
case DHTLIB_ERROR_ACK_H:
Serial.print("Ack High error,\t");
break;
2013-08-28 07:57:45 -04:00
default:
2021-12-16 10:44:08 -05:00
Serial.print("Unknown error,\t");
break;
2013-08-28 07:57:45 -04:00
}
// DISPLAY DATA
Serial.print(DHT.humidity, 1);
Serial.print(",\t");
Serial.println(DHT.temperature, 1);
delay(2000);
}
2021-12-16 10:44:08 -05:00
// -- END OF FILE --