#include <LiquidCrystal_I2C.h>
#include <Wire.h>
#include <Servo.h>
#include <DHT.h>
// Define the type of DHT sensor
#define DHTTYPE DHT22
// Pin definitions
#define DHTPIN 4
#define OK_PIN A1
#define UP_PIN A2
#define DOWN_PIN A3
#define BULB_PIN 3
#define VAP_PIN 6
#define SERVO_PIN 9
// LCD
LiquidCrystal_I2C lcd(0x27, 16, 2); // Ensure this address is correct for your LCD
// DHT Sensor
DHT dht(DHTPIN, DHTTYPE);
// Servo motor
Servo motor;
// Variables
int ack = 0;
int pos = 0;
int sec = 0;
int Min = 0;
int hrs = 0;
int T_threshold = 30;
int H_threshold = 60;
int SET = 0;
boolean T_condition = true;
boolean H_condition = true;
void setup() {
lcd.begin(16, 2);
Serial.begin(9600); // serial data transfer
lcd.init(); // initialize LCD
lcd.backlight();
pinMode(OK_PIN, INPUT_PULLUP);
pinMode(UP_PIN, INPUT_PULLUP);
pinMode(DOWN_PIN, INPUT_PULLUP);
pinMode(BULB_PIN, OUTPUT);
pinMode(VAP_PIN, OUTPUT);
digitalWrite(BULB_PIN, LOW);
digitalWrite(VAP_PIN, LOW);
motor.attach(SERVO_PIN);
motor.write(pos);
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Temperature &");
lcd.setCursor(0, 1);
lcd.print("Humidity ");
delay(3000);
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Controller For");
lcd.setCursor(0, 1);
lcd.print("Incubator");
delay(3000);
lcd.clear();
Serial.println("Temperature and Humidity Controller For Incubator");
dht.begin();
}
void loop() {
if (SET == 0) {
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Set Temperature:");
lcd.setCursor(0, 1);
lcd.print(T_threshold);
lcd.print(" *C");
while (T_condition) {
if (digitalRead(UP_PIN) == LOW) {
T_threshold += 1;
lcd.setCursor(0, 1);
lcd.print(T_threshold);
lcd.print(" *C");
delay(200);
}
if (digitalRead(DOWN_PIN) == LOW) {
T_threshold -= 1;
lcd.setCursor(0, 1);
lcd.print(T_threshold);
lcd.print(" *C");
delay(200);
}
if (digitalRead(OK_PIN) == LOW) {
delay(200);
T_condition = false;
}
}
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Set Humidity:");
lcd.setCursor(0, 1);
lcd.print(H_threshold);
lcd.print("%");
delay(100);
while (H_condition) {
if (digitalRead(UP_PIN) == LOW) {
H_threshold += 1;
lcd.setCursor(0, 1);
lcd.print(H_threshold);
lcd.print("%");
delay(100);
}
if (digitalRead(DOWN_PIN) == LOW) {
H_threshold -= 1;
lcd.setCursor(0, 1);
lcd.print(H_threshold);
lcd.print("%");
delay(200);
}
if (digitalRead(OK_PIN) == LOW) {
delay(100);
H_condition = false;
}
}
SET = 1;
}
ack = 0;
float temp = dht.readTemperature();
float hum = dht.readHumidity();
if (isnan(temp) || isnan(hum)) {
Serial.println("Failed to read from DHT sensor!");
ack = 1;
} else {
ack = 0;
//Serial.print("Temperature: ");
//Serial.print(temp);
//Serial.print(" *C, Humidity: ");
//Serial.print(hum);
//Serial.println(" %");
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Temp:");
lcd.print(temp);
lcd.print(" *C");
lcd.setCursor(0, 1);
lcd.print("Humidity:");
lcd.print(hum);
lcd.print(" %");
delay(500);
if (temp >= T_threshold) {
digitalWrite(BULB_PIN, LOW);
} else {
digitalWrite(BULB_PIN, HIGH);
}
if (hum >= H_threshold) {
digitalWrite(VAP_PIN, HIGH);
} else {
digitalWrite(VAP_PIN, LOW);
}
sec += 1;
if (sec == 3) {
sec = 0;
Min += 1;
}
if (Min == 3) {
Min = 0;
hrs += 1;
}
if (hrs == 3 && Min == 0 && sec == 0) {
Serial.println("ROTATING FORWARD");
for (pos = 0; pos <= 180; pos += 1) {
motor.write(pos);
delay(25);
}
}
if (hrs == 6 && Min == 0 && sec == 0) {
Serial.println("ROTATING BACKWARD");
hrs = 0;
for (pos = 180; pos >= 0; pos -= 1) {
motor.write(pos);
delay(25);
}
}
}
if (ack == 1) {
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("No Sensor data.");
lcd.setCursor(0, 1);
lcd.print("System Halted.");
digitalWrite(BULB_PIN, LOW);
digitalWrite(VAP_PIN, LOW);
}
delay(500);
}
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
lcd1:GND
lcd1:VCC
lcd1:SDA
lcd1:SCL
dht1:VCC
dht1:SDA
dht1:NC
dht1:GND
servo1:GND
servo1:V+
servo1:PWM
led1:A
led1:C
led2:A
led2:C
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r
btn3:1.l
btn3:2.l
btn3:1.r
btn3:2.r