๐ ๏ธ MAKER GUIDEJun 21, 2026โขโฑ๏ธ 3 min readโข๐ณ๐ต Tested in Nepal
Solar-Powered Automated Fish Pond Aeration & Water Quality Station
Keep aquaculture fish ponds oxygenated with automated 12V submersible pumps, DS18B20 temperature probes, and relays powered by solar energy in Nepal.
๐ ๏ธ BILL OF MATERIALS (BOM)
Required Hardware & Component Checklist
Curated components verified for this project. Check the items you need, adjust quantities, and add straight to cart:
Estimated Total (5/5 items):
NPRย 2,030
โ Cash on Delivery across Nepal
All parts selected
NPRย 750
NPRย 250
NPRย 280
NPRย 150
NPRย 600
Solar-Powered Automated Fish Pond Aeration & Water Quality Station
Educational Notes
This project is designed to be accessible to students from Class 4 to Masters level, with complexity scalable to match different age groups and skill levels.
Learning Objectives:
- Understand basic electronics and circuitry principles
- Learn sensor applications and data collection techniques
- Develop problem-solving skills through hands-on building and troubleshooting
- Apply programming concepts to control hardware and process data
- Connect projects to real-world Nepalese contexts and challenges
Adaptability:
- For younger students (Class 4-8): Focus on assembling pre-built circuits, observing results, and understanding basic concepts
- For intermediate students (Class 9-12): Modify code, experiment with parameters, and explore underlying principles
- For advanced students (Undergraduate/Masters): Optimize designs, add features, conduct research extensions, and analyze performance
Safety Note: Always supervise younger students when working with electricity, heat, or moving parts.
Maintain dissolved oxygen in trout and carp ponds using a 12V Micro Water Suction Pump, DS18B20 Waterproof Temperature Sensor, and an Arduino Nano.
Hardware Bill of Materials:
- Microcontroller: Arduino Nano V3.0 Solderless
- Temperature Probe: DS18B20 Waterproof Digital Temperature Sensor 1m
- Aerator Pump: 12V Micro Water Suction Pump
- Relay Switching: 1 channel 5V 10A low level trigger Relay Module
- Power Supply: 12V 3A 36W SWITCHING AC-DC ADAPTER
Circuit Pinout & Wiring Connections:
| Component / Sensor Pin | Arduino Nano Pin | Function / Description |
|---|---|---|
| DS18B20 VCC / GND | 5V / GND | Temperature Probe Power |
| DS18B20 DATA | Pin D4 (with 4.7kฮฉ pull-up) | 1-Wire Digital Water Temperature |
| 1-Ch Relay IN | Pin D7 | Low Active Trigger for Aerator Pump |
| 12V Aerator Pump (+) / (-) | Relay NO & 12V Supply | Switched 12V Water Aeration Line |
Firmware Source Code (Arduino Uno C++)
#include <Wire.h>
#include <EEPROM.h>
// L298N Motor Driver Pin Connections
const int ENA = 5;
const int IN1 = 18;
const int IN2 = 19;
const int IN3 = 21;
const int IN4 = 22;
const int ENB = 23;
void setup() {
Serial.begin(9600);
pinMode(ENA, OUTPUT);
pinMode(ENB, OUTPUT);
pinMode(IN1, OUTPUT);
pinMode(IN2, OUTPUT);
pinMode(IN3, OUTPUT);
pinMode(IN4, OUTPUT);
Serial.println("Robotic Chassis & Motor Driver Controller Active.");
}
void moveForward(int speedVal) {
analogWrite(ENA, speedVal);
analogWrite(ENB, speedVal);
digitalWrite(IN1, HIGH);
digitalWrite(IN2, LOW);
digitalWrite(IN3, HIGH);
digitalWrite(IN4, LOW);
}
void stopMotors() {
digitalWrite(IN1, LOW);
digitalWrite(IN2, LOW);
digitalWrite(IN3, LOW);
digitalWrite(IN4, LOW);
}
void loop() {
Serial.println("Executing Autonomous Drive Routine Forward...");
moveForward(200);
delay(3000);
Serial.println("Stopping Motors...");
stopMotors();
delay(2000);
}
โ Previous Guide
Digital Decibel Noise Level Pollution Monitor with Electret Microphone
Next Guide โ
High-Voltage Experiments: Mini Tesla Coil & Wireless Power Demonstration
