This project is an Infant Incubator designed to maintain a stable environment for newborns. It includes features such as temperature and humidity monitoring, door open detection, and jaundice detection. The incubator uses an Arduino to control various sensors and actuators, ensuring the infant's safety and comfort.
- Temperature and Humidity Monitoring: Two DHT11 sensors measure temperature and humidity at different points, providing an average reading for accurate control.
- Door Open Detection: An ultrasonic sensor detects if the incubator door is open and triggers an alarm.
- Heating System: A relay-controlled 100-watt incandescent bulb acts as a heater to maintain the desired temperature. Note: Due to budget constraints, we utilized a 100-watt incandescent bulb as a heating element. In a real-world application, this should be replaced with a proper medical-grade heater to ensure optimal performance and safety.
- Jaundice Detection: A color sensor (TCS3200) detects jaundice by measuring the baby's skin color.
- Alarms: Two buzzers provide audible alerts for different conditions (door open and low temperature).
- DHT11 Temperature Humidity Sensor Module
- 5V Buzzers
- TCS3200 Color Sensor
- 5V Relay
- 100 Watt Incandescent Light Bulb
- HC-SR04 Ultrasonic Sensor Module
- Arduino Uno
- Breadboard
- Male to Female Jumper Wires
- Sensor 1:
- VCC to 5V
- GND to GND
- DATA to Digital Pin 7
- Sensor 2:
- VCC to 5V
- GND to GND
- DATA to Digital Pin 8
- Buzzer 1 (Door Alarm):
- VCC to Digital Pin 11
- GND to GND
- Buzzer 2 (Temperature Alarm):
- VCC to Digital Pin 12
- GND to GND
- S0 to Digital Pin 2
- S1 to Digital Pin 3
- S2 to Digital Pin 4
- S3 to Digital Pin 5
- OUT to Digital Pin 6
- VCC to 5V
- GND to GND
- VCC to 5V
- GND to GND
- TRIG to Digital Pin 9
- ECHO to Digital Pin 10
- Relay IN to Digital Pin 12
- Relay VCC to 5V
- Relay GND to GND
- Connect the bulb to the relay as per the relay module's instructions.
- Use the breadboard and male-to-female jumper wires to make the connections between the components and the Arduino Uno.
- Connect all components as described in the wiring diagram.
- Upload the provided Arduino code to your Arduino board.
- Issue: Door open detection not working properly.
- Solution: Adjust the distance threshold value according to your incubator dimensions.
- Issue: Incorrect RGB readings.
- Solution: Calibrate your color sensor.