Smart Garden
My name is Valentina, and I am a rising sophomore at Loyola School. My project is the Smart Garden. The Smart Garden is a monitoring and automatic watering system. The system monitors how much water my plant has, displays the data on a graph, and pumps water in the plant as necessary.
Engineer
Valentina
Area of Interest
Mechanical Engineering; Electrical Engineering
School
Loyola School
Grade
Rising Sophomore
Reflection:
BlueStamp gave me the opportunity to learn about soldering, programming, and the functions of all the parts of my project. I can use what I learned in future projects. This experience also gave me an idea of what working in an engineering field would be like, which is something I would like to pursue.
Final Milestone
Water Level & Soil Moisture Graph:
int sensor_pin = A1;
int output_value ;
void setup()
{
Serial.begin(9600);
Serial.println("Reading From the Sensor ...");
delay(2000);
}
void loop()
{
output_value= analogRead(sensor_pin);
Serial.println(sensor_pin);
output_value = map(output_value,0,1023,0,100);
delay(500);
int sensorValue = analogRead(A0);
Serial.print("Mositure : ");
Serial.print("0");
Serial.print(",");
Serial.print(output_value);
Serial.println("%");
Serial.print(",");
Serial.println(sensorValue);
delay(500);
}
I never have to fetch my die from under the table again (from rolling it too hard). This is really, really clever!