Automatic Plant Watering/Irrigation System Using Arduino Uno

Automatic Plant Watering/Irrigation System Using Arduino Uno This project monitors the moisture of soil and waters it by AC pump. Components required Hardware Arduino UNO Soil Moisture Sensor 5 V 1 channel Relay Module AC-Pump-240-Volts Jumper/Connecting Wires 5 V DC Adapter Software Arduino IDE Warning: - AC is very risky and accidental shock could be fetal, so be sure to pursue appropriate safety precautions. Predictable Designs assumes no accountability for any injury that may happen by following this tutorial. Circuit and Working The circuit is built using Arduino Uno, Soil Moisture sensor and a 1-channel relay or as per the requirements. . The step-wise working is as follows: Step1: Upload the sketch in Arduino Uno. A Sample sketch is shown below: #define PUMP_ON 13 #define SEN_IN 2 void setup() { pinMode(PUM...