DHT22 support
This commit is contained in:
parent
3fc20e4a82
commit
e7cc0216de
|
@ -1,13 +1,14 @@
|
||||||
|
|
||||||
// https://www.arduino.cc/en/Reference/LiquidCrystal
|
// https://www.arduino.cc/en/Reference/LiquidCrystal
|
||||||
// https://www.youtube.com/watch?v=dZZynJLmTn8
|
// https://www.youtube.com/watch?v=dZZynJLmTn8
|
||||||
|
// https://www.youtube.com/watch?v=R-CRIthB7ZY
|
||||||
// http://howtomechatronics.com/tutorials/arduino/lcd-tutorial/
|
// http://howtomechatronics.com/tutorials/arduino/lcd-tutorial/
|
||||||
|
|
||||||
#include <DHT.h>
|
#include <DHT.h>
|
||||||
#include <LiquidCrystal.h>
|
#include <LiquidCrystal.h>
|
||||||
|
|
||||||
#define DHT_APin A0 // Pin Análogico al que he conectado el sensor
|
#define DHT_APin A0 // Pin Análogico al que he conectado el sensor
|
||||||
#define DHT_Type DHT11 // mi sensor es el DHT11
|
#define DHT_Type DHT22 // mi sensor es el DHT11
|
||||||
|
|
||||||
// init
|
// init
|
||||||
DHT dht(DHT_APin, DHT_Type);
|
DHT dht(DHT_APin, DHT_Type);
|
||||||
|
|
Loading…
Reference in New Issue