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

136 lines
2.9 KiB
Arduino
Raw Normal View History

2013-08-28 07:57:45 -04:00
//
// FILE: dht_test.ino
// AUTHOR: Rob Tillaart
// PURPOSE: DHT Temperature & Humidity Sensor library for Arduino
2021-12-16 10:44:08 -05:00
// URL: https://github.com/RobTillaart/DHTlib
2013-08-28 07:57:45 -04:00
// URL: http://arduino.cc/playground/Main/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 4
#define DHT21_PIN 5
#define DHT22_PIN 6
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("DHT22, \t");
int chk = DHT.read22(DHT22_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(1000);
// READ DATA
Serial.print("DHT21, \t");
chk = DHT.read21(DHT21_PIN);
2013-08-28 07:57:45 -04:00
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(1000);
// READ DATA
Serial.print("DHT11, \t");
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(1000);
}
2021-12-16 10:44:08 -05:00
// -- END OF FILE --