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

66 lines
1.3 KiB
Arduino
Raw Normal View History

2013-08-28 07:57:45 -04:00
//
// FILE: dht21_test.ino
// AUTHOR: Rob Tillaart
// PURPOSE: DHT library test sketch for DHT21 && Arduino
// URL:
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 DHT21_PIN 5
2013-08-28 07:57:45 -04:00
void setup()
{
2014-10-23 10:15:26 -04:00
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)");
2013-08-28 07:57:45 -04:00
}
2021-12-16 10:44:08 -05:00
2013-08-28 07:57:45 -04:00
void loop()
{
2014-10-23 10:15:26 -04:00
// READ DATA
Serial.print("DHT21, \t");
int chk = DHT.read21(DHT21_PIN);
switch (chk)
{
case DHTLIB_OK:
Serial.print("OK,\t");
break;
case DHTLIB_ERROR_CHECKSUM:
Serial.print("Checksum error,\t");
break;
2015-02-03 04:14:17 -05:00
case DHTLIB_ERROR_TIMEOUT:
2014-10-23 10:15:26 -04:00
Serial.print("Time out error,\t");
break;
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;
default:
Serial.print("Unknown error,\t");
break;
}
// DISPLAY DATA
Serial.print(DHT.humidity, 1);
Serial.print(",\t");
Serial.println(DHT.temperature, 1);
2013-08-28 07:57:45 -04:00
2014-10-23 10:15:26 -04:00
delay(2000);
2013-08-28 07:57:45 -04:00
}
2021-12-16 10:44:08 -05:00
// -- END OF FILE --