Hydroponic Ecological Rotary Garden for growing Vegetables indoors
Things used in this project
Hardware components
HARDWARE LIST
1 Arduino UNO
1 DFRobot Gravity: Analog Spear Tip pH Sensor / Meter Kit
Hand tools and fabrication machines
Laser cutter (generic)
3D Printer (generic)
Story
The HERO GARDEN ( Hydroponic Ecological Rotary Garden ) is a Pilot Project to show the feasibility of growing Green Vegetables indoors with minimal Human Interaction.
We want to build a low-cost system to estimate the consumption of Energy & Plant Nutrients to optimize the process.
Schematics
Hardware
Code
CODE
#
# HEY BUDDY, DON'T WORRY ... THIS IS JUT A TEST CODE
# WE WILL BE ADDING THE REAL ONE CODE AS SOON AS WE HAD SOMETHING TO SHARE
#
#define pinLED 9
void setup() {
pinMode(pinLED, OUTPUT);
}
void loop() {
for (int i = 0; i <= 255; i++) {
analogWrite(pinLED,i);
delay(4);
}
for (int i = 255; i >= 0; i--){
analogWrite(pinLED,i);
delay(4);
}
}
License
All Rights
Reserved
0
More from this category