Smart Incubator
Smart Incubator
Abstract
This technical report outlines the design and
development of a baby incubator system using
an Arduino Uno microcontroller integrated with
multiple sensors. The system incorporates a
DHT11 temperature and humidity sensor, MQ-2
gas sensor, pulse sensor, and light-dependent
resistor (LDR) to monitor critical environmental
and health parameters, ensuring optimal
conditions for neonatal care. The focus of this
project is on creating a cost-effective, reliable,
and easy-to-implement solution for use in
resource-limited healthcare settings. The system
is capable of providing real-time monitoring
with alarms and automated controls to maintain
safety. This report details the methodology,
hardware and software implementation, testing
results, challenges, and future scope.
1. Introduction
1.1 Background
Premature and at-risk infants require a stable
and controlled environment for survival and
development. Traditional baby incubators
regulate temperature, humidity, and light while
protecting newborns from infections or harmful
gases. However, in many under-resourced areas,
standard incubators are either unavailable or
unaffordable.
The Baby Incubator Project addresses this
challenge by offering an affordable and
simplified solution using an Arduino Uno
microcontroller. By integrating essential sensors,
the project ensures neonatal care by
continuously monitoring environmental factors
and triggering alarms during abnormal
conditions.
1.2 Objectives
The primary objectives of this project are:
• Develop a low-cost baby incubator system
for use in underserved regions.
• Integrate sensors to monitor:
o Temperature and humidity (DHT11
sensor)
o Harmful gas levels (MQ-2 sensor)
o Heart rate (Pulse sensor)
o Light intensity (LDR)
• Implement real-time monitoring and alerts
for critical conditions.
• Provide a user-friendly interface for
caregivers and medical personnel.
1.3 Scope
The project is designed for:
• Small-scale neonatal care units in hospitals
or clinics.
• Areas lacking access to expensive medical
equipment.
• Further scalability into remote monitoring
systems using IoT for enhanced
functionality.
2. Hardware Components
The project uses cost-efficient and widely
available hardware components:
Component Description
Microcontroller serving as the
Arduino Uno
brain of the system.
Measures temperature and
DHT11 Sensor
humidity with digital output.
Detects harmful gases (e.g.,
MQ-2 Gas
CO, methane) and triggers
Sensor
alerts.
Monitors heart rate and
Pulse Sensor
displays readings in real-time.
Light-
Adjusts light intensity to
Dependent
provide optimal illumination.
Resistor
Displays real-time sensor data
LCD Display
for caregivers.
Alerts caregivers when a
Buzzer and LEDs parameter exceeds safe
thresholds.
Component Description
Ensures stable power for
Power Supply sensors and Arduino
operation.
Connecting Establishes connections
Wires between components.
3. Software Development
The software for the incubator was developed
using the Arduino IDE. Key features include:
• Data acquisition: Capturing data from all
sensors in real-time.
• Real-time monitoring: Displaying sensor
outputs on the LCD screen.
• Condition-based alerts: Activating
buzzers/LEDs when abnormal conditions
occur.
• Modular design: Ensuring clean integration
of each sensor and control logic.