This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
DHT22.cpp - Library for DHT22/DHT11 relative humidity & temperature sensor. | |
Created by Sorz. 2014-07-18. | |
*/ | |
#include "Arduino.h" | |
#include "DHT22.h" | |
TempHumiSensor::TempHumiSensor(int pin) | |
{ | |
pinMode(pin, INPUT_PULLUP); |