Temperature and Humidity Controller for Egg hatching

Leave a comment

Project source : https://github.com/mzc1986/incubator /*—–( Import needed libraries )—–*/ #include <Wire.h> // Comes with Arduino IDE #include <LCD.h> #include “DHT.h” #define DHTPIN 2 // what digital pin we’re connected to // Uncomment whatever type you’re using! #define DHTTYPE DHT11 // DHT 11 DHT dht(DHTPIN, DHTTYPE); // Get the LCD I2C Library here: // https://bitbucket.org/fmalpartida/new-liquidcrystal/downloads // … Continued