GY-63_MS5611/libraries/DHTstable/examples/dht12_test/dht12_test.ino

61 lines
1.2 KiB
Arduino
Raw Normal View History

//
// FILE: dht12_test.ino
// AUTHOR: Rob Tillaart
2021-05-28 07:22:49 -04:00
// VERSION: 1.0.0
// PURPOSE: DHT library test sketch for DHT12 && Arduino
2020-11-27 05:10:47 -05:00
// URL: https://github.com/RobTillaart/DHTstable
//
2021-05-28 07:22:49 -04:00
// HISTORY:
// 1.0.0 2021-05-26 class name changed to DHTStable (breaking change)
//
// 0.2.0 use getHumidity() and getTemperature()
// 0.1.1 add URL in header
2021-05-28 07:22:49 -04:00
#include "DHTStable.h"
2021-05-28 07:22:49 -04:00
DHTStable DHT;
#define DHT12_PIN 5
2021-05-28 07:22:49 -04:00
void setup()
{
Serial.begin(115200);
2021-01-29 06:31:58 -05:00
Serial.println(__FILE__);
Serial.print("LIBRARY VERSION: ");
2021-05-28 07:22:49 -04:00
Serial.println(DHTSTABLE_LIB_VERSION);
Serial.println();
Serial.println("Type,\tstatus,\tHumidity (%),\tTemperature (C)");
}
void loop()
{
// READ DATA
Serial.print("DHT12, \t");
int chk = DHT.read12(DHT12_PIN);
switch (chk)
{
case DHTLIB_OK:
2021-01-29 06:31:58 -05:00
Serial.print("OK,\t");
break;
case DHTLIB_ERROR_CHECKSUM:
2021-01-29 06:31:58 -05:00
Serial.print("Checksum error,\t");
break;
case DHTLIB_ERROR_TIMEOUT:
2021-01-29 06:31:58 -05:00
Serial.print("Time out error,\t");
break;
default:
2021-01-29 06:31:58 -05:00
Serial.print("Unknown error,\t");
break;
}
// DISPLAY DATA
2021-01-29 06:31:58 -05:00
Serial.print(DHT.getHumidity(), 1);
Serial.print(",\t");
2021-01-29 06:31:58 -05:00
Serial.println(DHT.getTemperature(), 1);
delay(2000);
}
2021-01-29 06:31:58 -05:00
// END OF FILE