Mani Phase 5
Mani Phase 5
Mani Phase 5
MANAGEMENT
DEPARTMENT : EEE
NAME : MANIKANDAN S.
NM ID : aut950422EEE012
2) MANIKANDAN S. - aut950422EEE012
2) Project Demonstration. -3
3) Project Documentation -5
2
Phase5: PROJECT DEMONSTRATION &DOCUMENTATION
LINK: https://wokwi.com/projects/406817820760974337
➢ Project Demonstration:
3
Explain the key components: sensors (temperature, humidity, soil moisture),
actuators (fans, sprinklers, lights), IoT devices, and a central control system
(mobile app or dashboard).
2. System Setup: Show a small greenhouse model or live setup equipped with
sensors and connected to the IoT platform.
Explain how the sensors collect real-time data, which is then transmitted to
the cloud or central server.
3. Sensor Data Display: On a dashboard or mobile app, display live data from
the greenhouse (e.g., current temperature, humidity, and soil moisture
levels).
Show how the soil moisture sensor triggers the irrigation system if the soil is
too dry.
4
6. Energy Efficiency and Alerts: Show how the system monitors energy and
water usage, making it more efficient by avoiding unnecessary use of
resources.
Display alerts or notifications that are sent when parameters go out of the
optimal range, ensuring immediate attention from the user.
7. Data Analytics: Explain how the system logs historical data and uses it to
optimize future greenhouse operations.
➢ Project Documentation:
➢ Documentation Section:
1 System Components
5
Sensors: Temperature, humidity, soil moisture, and light sensors to gather real-time
environmental data.
Actuators: Fans, sprinklers, heaters, and lights to adjust the environment based on
sensor data.
IoT Devices: Microcontroller (e.g., Arduino, Raspberry Pi) and wireless communication
modules (e.g., ESP8266) for data transmission and control.
Software Interface: A dashboard or mobile app for remote monitoring and control.
Data Collection Layer: Sensors collect real-time data from the greenhouse environment.
Communication Layer: Data is transmitted to a cloud platform for storage and remote
access.
Action Layer: Actuators respond to sensor data and adjust greenhouse conditions.
3 Implementation:
4 Features
6
Real-time monitoring of environmental factors.
3. Outcome
1. Overview: The Feedback and Final Adjustments phase focuses on refining the
Smart Greenhouse Management System based on feedback from testing and
evaluation. This phase ensures that the system operates optimally under real-world
conditions and incorporates any changes necessary for enhanced functionality, user
experience, or performance. It involves reviewing the system’s efficiency, addressing
any issues, and making final improvements before deployment.
7
2. Performance Analysis: Analyze system performance under different environmental
conditions.
3. User Experience Review: Test the user interface (UI) for the mobile app or
dashboard.
Ensure ease of use, quick data access, and responsive remote control.
4. System Calibration: Calibrate sensors for higher accuracy and adjust sensitivity
thresholds if necessary.
6. Security Enhancements: Ensure that data transmission and remote access are
secure.
7. Final Testing: Conduct a comprehensive test after adjustments to verify that all
improvements function as expected.
3) Outcomes:
8
The final adjustments to the Smart Greenhouse Management System have
significantly enhanced its performance and user experience. Sensor calibration improved the
accuracy of environmental data, while optimization efforts reduced energy and water
consumption, making the system more efficient. User interface refinements have made remote
monitoring and control more intuitive and responsive, leading to better user satisfaction.
Security enhancements ensure safe data transmission and access, protecting user privacy.
After rigorous testing, the system is now stable, reliable, and fully ready for deployment in
real-world greenhouse environments. These improvements collectively ensure better crop yield
and resource management.
2. Report Sections
9
Challenges encountered during implementation and how they were resolved.
Feedback gathered from users and system operators, highlighting key areas for
improvement.
#include <LiquidCrystal_I2C.h>
#include <DHT.h>
#include <ESP32Servo.h>
// Pin definitions
10
#define DHTPIN 4
#define SOIL_MOISTURE_PIN 34
#define RELAY_PIN 18
#define LED_PIN 2
#define SERVO_PIN 5
// Components
Servo waterPump;
Void setup() {
Serial.begin(115200);
Dht.begin();
11
// Initialize LCD
Lcd.begin(16, 2);
Lcd.init();
Lcd.backlight();
Lcd.setCursor(0, 0);
// Initialize Servo
waterPump.attach(SERVO_PIN);
// Initialize pins
pinMode(SOIL_MOISTURE_PIN, INPUT);
pinMode(RELAY_PIN, OUTPUT);
pinMode(LED_PIN, OUTPUT);
digitalWrite(RELAY_PIN, HIGH);
Void startWatering() {
12
waterPump.write(90); // Assume 90 degrees is the pumping position
lcd.setCursor(0, 1);
lcd.print(“Watering ON…”);
Void stopWatering() {
lcd.setCursor(0, 1);
lcd.print(“Watering OFF”);
Void loop() {
Lcd.setCursor(0, 1);
Lcd.print(“Temp: “);
13
Lcd.print(temperature);
Lcd.print(humidity);
Lcd.print(“%”);
startWatering();
} else {
stopWatering();
digitalWrite(LED_PIN, HIGH);
} else {
digitalWrite(LED_PIN, LOW);
14
}
Delay(2000);
15
}
16
Conclusion:
The Smart Greenhouse Management Project successfully demonstrated the potential of IoT
and automation to optimize greenhouse environments, resulting in improved plant health,
increased resource efficiency, and reduced labor demands. With the handover completed, the
project team is equipped with detailed documentation, training, and tools to sustain operations
and drive future enhancements. The data-driven insights gathered pave the way for continued
advancements, ensuring that the system remains adaptable, efficient, and aligned with
sustainable agricultural practices.
17