Smart Rain Cover
Note
🌟 Welcome to the SunFounder Facebook Community! Whether you’re into Raspberry Pi, Arduino, or ESP32, you’ll find inspiration, help ideas here.
✅ Be the first to get free learning resources.
✅ Stay updated on new products & exclusive giveaways.
✅ Share your creations and get real feedback.
Kit purchase
Looking for parts? Check out our all-in-one kits below — packed with components, beginner-friendly guides, and tons of fun.
Name |
Includes Arduino board |
PURCHASE LINK |
|---|---|---|
Ultimate Sensor Kit |
Arduino Uno R4 Minima |
|
Universal Maker Sensor Kit |
× |
Course Introduction
In this lesson, you’ll build a simple automatic rain cover using a raindrop sensor and a servo with the Arduino UNO R4.
When rain is detected, the sensor triggers the servo to rotate and open the cover. When the rain stops, the servo automatically returns to its original position, closing the cover.
Note
If this is your first time working with an Arduino project, we recommend downloading and reviewing the basic materials first.
Required Components
In this project, we need the following components:
SN |
COMPONENT INTRODUCTION |
QUANTITY |
PURCHASE LINK |
|---|---|---|---|
1 |
Arduino UNO R4 Minima |
1 |
|
2 |
USB Type-C cable |
1 |
|
3 |
Breadboard |
1 |
|
4 |
Wires |
Several |
|
5 |
Digital Servo Motor |
1 |
|
6 |
Raindrop Detection Sensor Module |
1 |
Wiring
Common Connections:
Raindrop Detection Sensor Module
D0: Connect to 7 on the Arduino.
GND: Connect to breadboard’s negative power bus.
VCC: Connect to breadboard’s passive power bus.
Digital Servo Motor
Connect to breadboard’s positive power bus.
Connect to breadboard’s negative power bus.
Connect to 6 on the Arduino.
Writing the Code
Note
You can copy this code into Arduino IDE.
Don’t forget to select the board(Arduino UNO R4 Minima) and the correct port before clicking the Upload button.
#include <Servo.h>
/*
Raindrop Sensor + Servo Canopy
- If rain is detected (DO = LOW): servo moves to 90°
- If no rain (DO = HIGH): servo returns to 0°
*/
const int RAIN_DO_PIN = 7; // Raindrops sensor DO pin (LOW when rain detected)
const int SERVO_PIN = 6; // Servo signal pin
// Servo angles
const int SERVO_CLOSED_ANGLE = 0;
const int SERVO_OPEN_ANGLE = 90;
Servo canopyServo;
bool canopyOpened = false;
void setup() {
pinMode(RAIN_DO_PIN, INPUT);
canopyServo.attach(SERVO_PIN);
canopyServo.write(SERVO_CLOSED_ANGLE);
Serial.begin(9600);
Serial.println("Raindrop Servo Canopy Ready (DO LOW = Rain).");
}
void loop() {
int rainDO = digitalRead(RAIN_DO_PIN);
if (rainDO == LOW) {
// Rain detected -> open canopy
if (!canopyOpened) {
canopyServo.write(SERVO_OPEN_ANGLE);
canopyOpened = true;
}
} else {
// No rain -> close canopy
if (canopyOpened) {
canopyServo.write(SERVO_CLOSED_ANGLE);
canopyOpened = false;
}
}
delay(20);
}