From f94706e0ec63869acb8cdb35a1cee67162415cee Mon Sep 17 00:00:00 2001 From: Luke Date: Tue, 7 Jun 2016 00:48:14 -0500 Subject: [PATCH] added alternate LCD pin layout as well as adjusted temperature targets to be higher. --- ChickenIncubatorCode.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ChickenIncubatorCode.txt b/ChickenIncubatorCode.txt index 9dde494..a805a84 100644 --- a/ChickenIncubatorCode.txt +++ b/ChickenIncubatorCode.txt @@ -4,6 +4,8 @@ #include LiquidCrystal lcd(12, 11, 5, 4, 3, 2); +//Alternatively, sainsmart backlit LCD with button shield uses these pins: +//LiquidCrystal lcd(8, 13, 9, 4, 5, 6, 7); #define DHTPIN A2 // what pin we're connected to #define RELAY 7 @@ -51,7 +53,7 @@ void loop() { lcd.print("Temp: "); lcd.print(t); lcd.println("*C "); - if (t > 25) + if (t > 37.5)//37.5C = 99.5F for Chickens. Quail, try 38.3C = 101F. Forced air temps should be lower. { digitalWrite(7,HIGH); }