Plant H2O Tester for Arduino 1.0 Icon

Plant H2O Tester for Arduino

EpicMansDad007 Education
0
0 Ratings
50+
Downloads
1.0
version
Jul 30, 2016
release date
1.4 MB
file size
Free
Download

What's New

About Plant H2O Tester for Arduino Android App

The Plant H2O Tester was designed for use in the classroom enabling students to have a visual guide to when a plant needs water. Data analysis can be taken from the Arduino with some modification.

I hope to upload a video tutorial shortly to show how to set up the Arduino and the sensors to a breadboard.

I have attached the code here:
#include
int sensorPin = A0;
int sensorValue = 0;
int outPinRed = 9;
int outPinGreen = 10;
int outPinBlue = 11;

SoftwareSerial BT(1, 0); //TX, RX respectively

void setup() {
Serial.begin(9600);
pinMode(outPinRed, OUTPUT);
pinMode(outPinGreen, OUTPUT);
pinMode(outPinBlue, OUTPUT);
}
void loop() {
// while (Serial.available()) {
int sensorValue = analogRead(sensorPin);
Serial.println(sensorValue);
if (sensorValue > 800) {
digitalWrite(outPinRed, LOW);
digitalWrite(outPinGreen, LOW);
digitalWrite(outPinBlue, HIGH);
} else if(sensorValue > 600 && sensorValue <799) {
digitalWrite(outPinRed, LOW);
digitalWrite(outPinGreen, HIGH);
digitalWrite(outPinBlue, LOW);
} else {
digitalWrite(outPinRed, HIGH);
digitalWrite(outPinGreen, LOW);
digitalWrite(outPinBlue, LOW);
}
delay(3000);
}
//}

Other Information:

Requires Android:
Android 1.6+ (Donut, API 4)
Other Sources:

Download

This version of Plant H2O Tester for Arduino Android App comes with one universal variant which will work on all the Android devices.

Variant
1
(Jul 30, 2016)
Architecture
Unlimited
Minimum OS
Android 1.6+ (Donut, API 4)
Screen DPI
nodpi (all screens)

All Versions

If you are looking to download other versions of Plant H2O Tester for Arduino Android App, We have 1 version in our database. Please select one of them below to download.

Loading..