I am working a cool project because my wife likes to kill plants. I have basically a DHT sensor, moisture sensor, LCD, and solenoid valve. What I am trying to figure out is how to build the code that takes readings from the moisture sensor and waters if the moisture level gets below a value and the waters for a few seconds and cuts off. the LCD will display the temp/humidity values from the DHT sensor and will list that last completed water cycle. Of course, this will loop indefinitely.
Here is the image of the circuit since I figured out what I needed from building it on circuito. Thanks.
dear leo,
you need a help in your code?!
or you need a full code?!
I need the basic code but I do want to understand exactly what is going on. For a hobbyist, I really jumped into the deep end on this.
I got the serial coding as circuito provides that but I thought it will provide the basic code as well but I misintrepted that. Here is what they gave me:
// Include Libraries
#include âArduino.hâ
#include âDHT.hâ
#include âLiquidCrystal_PCF8574.hâ
#include âSoilMoisture.hâ
#include âSolenoidValve.hâ
// Pin Definitions
#define DHT_PIN_DATA 2
#define SOILMOISTURE5V_PIN_SIG A3
#define SOLENOIDVALVE_PIN_COIL1 3
// There are several different versions of the LCD I2C adapter, each might have a different address.
//#define LCD_ADDRESS 0x3F
#define LCD_ADDRESS 0x27
// Define LCD characteristics
#define LCD_ROWS 2
#define LCD_COLUMNS 16
#define SCROLL_DELAY 150
#define BACKLIGHT 255
// object initialization
DHT dht(DHT_PIN_DATA);
LiquidCrystal_PCF8574 lcdI2C;
SoilMoisture soilMoisture5v(SOILMOISTURE5V_PIN_SIG);
SolenoidValve solenoidValve(SOLENOIDVALVE_PIN_COIL1);
// define vars for testing menu
const int timeout = 10000; //define timeout of 10 sec
char menuOption = 0;
long time0;
// Setup the essentials for your circuit to work. It runs first every time your circuit is powered with electricity.
void setup()
{
// Setup Serial which is useful for debugging
// Use the Serial Monitor to view printed messages
Serial.begin(9600);
while (!Serial) ; // wait for serial port to connect. Needed for native USB
Serial.println(âstartâ);
dht.begin();
// initialize the lcd
lcdI2C.begin(LCD_COLUMNS, LCD_ROWS, LCD_ADDRESS, BACKLIGHT);
menuOption = menu();
}
// Main logic of your circuit. It defines the interaction between the components you selected. After setup, it runs over and over again, in an eternal loop.
void loop()
{
if(menuOption == '1') {
// DHT22/11 Humidity and Temperature Sensor - Test Code
// Reading humidity in %
float dhtHumidity = dht.readHumidity();
// Read temperature in Fahrenheit, for Celsius use .readTempC()
float dhtTempC = dht.readTempF();
Serial.print(F("Humidity: ")); Serial.print(dhtHumidity); Serial.print(F(" [%]\t"));
Serial.print(F("Temp: ")); Serial.print(dhtTempC); Serial.println(F(" [F]"));
}
else if(menuOption == '2') {
// LCD Display Screen 16x2 I2C - Test Code
// The LCD Screen will display the text of your choice.
lcdI2C.clear(); // Clear LCD screen.
lcdI2C.print(" Circuito.io "); // Print print String to LCD on first line
lcdI2C.selectLine(2); // Set cursor at the begining of line 2
lcdI2C.print(" Rocks! "); // Print print String to LCD on second line
delay(1000);
}
else if(menuOption == '3') {
// Soil Moisture Sensor - Test Code
int soilMoisture5vVal = soilMoisture5v.read();
Serial.print(F("Val: ")); Serial.println(soilMoisture5vVal);
}
else if(menuOption == '4') {
// 12V Solenoid Valve - 3/4'' - Test Code
// The solenoid valve will turn on and off for 500ms (0.5 sec)
solenoidValve.on(); // 1. turns on
delay(500); // 2. waits 500 milliseconds (0.5 sec). Change the value in the brackets (500) for a longer or shorter delay in milliseconds.
solenoidValve.off();// 3. turns off
delay(500); // 4. waits 500 milliseconds (0.5 sec). Change the value in the brackets (500) for a longer or shorter delay in milliseconds.
}
if (millis() - time0 > timeout)
{
menuOption = menu();
}
}
// Menu function for selecting the components to be tested
// Follow serial monitor for instrcutions
char menu()
{
Serial.println(F("\nWhich component would you like to test?"));
Serial.println(F("(1) DHT22/11 Humidity and Temperature Sensor"));
Serial.println(F("(2) LCD Display Screen 16x2 I2C"));
Serial.println(F("(3) Soil Moisture Sensor"));
Serial.println(F("(4) 12V Solenoid Valve - 3/4''"));
Serial.println(F("(menu) send anything else or press on board reset button\n"));
while (!Serial.available());
// Read data from serial monitor if received
while (Serial.available())
{
char c = Serial.read();
if (isAlphaNumeric(c))
{
if(c == '1')
Serial.println(F("Now Testing DHT22/11 Humidity and Temperature Sensor"));
else if(c == '2')
Serial.println(F("Now Testing LCD Display Screen 16x2 I2C"));
else if(c == '3')
Serial.println(F("Now Testing Soil Moisture Sensor"));
else if(c == '4')
Serial.println(F("Now Testing 12V Solenoid Valve - 3/4''"));
else
{
Serial.println(F("illegal input!"));
return 0;
}
time0 = millis();
return c;
}
}
}
Hi Leo
How much of the provided code do you understand? Would it help for someone to start by explaining what Circuito provided?
Sounds like a fun project by the way. Even if youâre good at taking care of plants, you might be away for a while and itâd be good to know that your favourite plant is being watered sufficiently.
The screenshot of the circuit isnât necessary; you can share a link of the URL/address of the circuit and weâll all be able to see the circuit as well as the code it generates. Itâs really very clever; it builds the circuit dynamically based on the selected components.
Could you do that please so that we can all see exactly which components you chose and what code Circuito provides for this?
Sorry for the late replay. Here is the link:
Thanks Leo.
Something appears to be wrong for me; when I try edit that project (https://www.circuito.io/app?components=512,9442,10167,10456,11021,13322,417986) it reverts to a default circuit with just an Arduino and USB cable. But I can see the code so we can help you with that now.
How much of the code do you understand?
Yes, we have a bug with the âeditâ feature from the project guide, thatâs the reason itâs not working. But you can still see the circuit in the project guide itself
I understand the testing code that is built. I guess my real problem is really where to start with the coding. Everything is assigned and defined, thanks to the test code from the circuit building. Just need help getting started and then hopefully I can get it from there with little help.
Hi Leo
Sorry for the delay in helping you, but my current job is pretty full on at the moment. Long days working intensely on code throughout the day. Itâs just a bit tiring to be honest.
Hopefully Iâll get a chance to help soon. In the mean time, could you describe the behaviour you want from the code given the components youâve chosen?
Cheers
Bernhard
Basically I want to take the readings from the moisture sensor and water for a set number of seconds via the coil.Then I want the LCD screen to display the current temp & humidity sensor via the DHT sensor, along with when the last watering occurred. I also need the LCD to display when the system is currently watering. It sounds simplistic in my head but with my limited experience with coding its been draining on my brain.
Hi Leo
My apologies again for the delay in responding.
Iâll try explain my thought process as I go through from an idea like yours to the code. I hope thatâs the most useful thing to you and others trying to get into this.
I start by taking the plain English and converting it into individual requirements as follows:
- Take the readings from the moisture sensor
- Water for a set number of seconds via the coil
- LCD screen to display:
-
- the current temp & humidity sensor via the DHT sensor
-
- when the last watering occurred
-
- when the system is currently watering
Arduino code runs in a loop. The loop is typically âinfiniteâ in the sense that we donât âexitâ the loop; we run for as long as there is power. So with that in mind, letâs convert some of the above into logic inside that loop. The loop in the provided code does something different; listening for input from you and testing components. You might want to leave that in for testing purposes, or remove it. Iâm going to remove it for brevity and clarity in seeing what weâre doing here, but there is valuable code in there to read the values from the components/devices and to show text on the LCD so weâll use that again.
Rather than go straight for a completed working program, I often start with a stripped down version that does some of what I want so that I can easily test it and make incremental improvements until itâs all working. As an example, nobody builds a car from scratch these days; the gearbox arrives complete, with the meshing of the gears already tested and verified.
void loop()
{
/* *********************************************** */
/* Read all the values from the components we have */
/* *********************************************** */
// DHT22/11 Humidity and Temperature Sensor - Read humidity in %
float humidity = dht.readHumidity();
// Read temperature in Celsius, for Fahrenheit use .readTempF()
float tempC = dht.readTempC();
// Soil Moisture Sensor - Test Code
int soilMoisture5vVal = soilMoisture5v.read();
/* *********************************************** */
/* Show the values on the LCD */
/* *********************************************** */
// Note: sprintf is a function to format a string
// We have floats for the humidity and temp. Arduino's sprintf function doesn't include support for floats.
// We'll simplify things by converting to integers. We're aiming for a string like "12% 16C nV" to show humidity, temp, and soil "Voltage".
// We'll format an array of characters (a string) with the values using sprintf, then print that with the LCD library
// Line 1 can be sensor values, and hopefully we can get the rest of the feedback into line 2 (later)
char buffer[16];
sprintf(buffer, "%02d\% %02dC %dV", int(humidity), int(tempC), soilMoisture5vVal);
lcdI2C.clear();
lcdI2C.print(buffer);
lcdI2C.selectLine(2);
lcdI2C.print("");
// Wait for a second before updating again
delay(1000);
}
The above loop is simple enough. Itâll read all the values and print them on the LCD once a second. It doesnât sound like much but it verifies that all the components are correctly connected, working, and gives you an idea of the values you can expect. Youâll need to know these values to set limits for the code to know when to add water.
To add water, weâll use the solenoid code that was provided, but weâve removed for now:
Letâs see the above working before we move onto the more advanced stuff like timing and watering when necessary if youâre okay with that.
Assuming the code works, we need to expand on and fulfill the remaining requirements:
- DONE: Take the readings from the moisture sensor
- Water for a set number of seconds via the coil
- LCD screen to display:
-
- DONE: the current temp & humidity sensor via the DHT sensor
-
- when the last watering occurred
-
- when the system is currently watering
I assume the system should only water when required. For this, you 'll need to know the soilMoisture5vVal
threshold at which you would water the plant. With the above program youâll have noticed the value before the V, and what that is when you would give it some water. Iâll assume that value is 128. In the code you downloaded, before the setup function youâll see code such as the following:
const int timeout = 10000; //define timeout of 10 sec
char menuOption = 0;
long time0;
Youâll need to add a few of your own constants and variables here. Letâs define the voltage that you deem too dry, i.e. the plant needs water. Weâll also add variables for when it was that it last watered, and whether itâs watering now. Youâll need to determine how long the solenoid needs to stay open to water the plant sufficiently. This is defined in waterDurationSeconds where Iâve assumed 3 seconds is enough.
const int tooDry = 128;
const int waterDurationSeconds = 3;
bool isWatering = false;
long lastWateredTime = 0;
Letâs talk about how weâll use these.
- Weâll compare the value in
soilMoisture5vVal
with thetooDry
constant. If thesoilMoisture5vVal
is below that level, then the soil is too dry and weâll setisWatering
to true. - If
isWatering
is true, weâll (a) water the plant, and (b) set thelastWateredTime
to the current time. - Weâll show the time since watering and
isWatering
status on the LCD.
Itâs worth mentioning here that the Arduino does not have a clock in the human sense of a clock. It has a clock that measures time since it was powered up, but that has no idea what your current local time is. So our times will be âelapsed timeâ since watering, not your local time of day/night.
The documentation says that the millis
function:
so itâs important not to use the elapsed time to drive logic since that logic will fail after 50 days.
For clarity, hereâs the code that weâll add:
isWatering = false;
if (soilMoisture5vVal < tooDry) {
solenoidValve.on();
delay(waterDurationSeconds * 1000);
solenoidValve.off();
isWatering = true;
// millis is the time since starting up. See https://www.arduino.cc/reference/en/language/functions/time/millis/
lastWateredTime = millis();
}
sprintf(buffer, "%s %d Mins", (isWatering ? "W" : " "), (millis() - lastWateredTime)/1000/60);
Hereâs the complete loop function with the first version and this new code added:
void loop()
{
/* *********************************************** */
/* Read all the values from the components we have */
/* *********************************************** */
// DHT22/11 Humidity and Temperature Sensor - Read humidity in %
float humidity = dht.readHumidity();
// Read temperature in Celsius, for Fahrenheit use .readTempF()
float tempC = dht.readTempC();
// Soil Moisture Sensor - Test Code
int soilMoisture5vVal = soilMoisture5v.read();
/* *********************************************** */
/* Water the plant if necessary */
/* *********************************************** */
isWatering = false;
if (soilMoisture5vVal < tooDry) {
solenoidValve.on();
delay(waterDurationSeconds * 1000);
solenoidValve.off();
isWatering = true;
// millis is the time since starting up. See https://www.arduino.cc/reference/en/language/functions/time/millis/
lastWateredTime = millis();
}
/* *********************************************** */
/* Show the values on the LCD */
/* *********************************************** */
// Note: sprintf is a function to format a string
// We have floats for the humidity and temp. Arduino's sprintf function doesn't include support for floats.
// We'll simplify things by converting to integers. We're aiming for a string like "12% 16C nV" to show humidity, temp, and soil "Voltage".
// We'll format an array of characters (a string) with the values using sprintf, then print that with the LCD library
// Line 1 can be sensor values, and hopefully we can get the rest of the feedback into line 2
char buffer[16];
lcdI2C.clear();
sprintf(buffer, "%02d\% %02dC %dV", int(humidity), int(tempC), soilMoisture5vVal);
lcdI2C.print(buffer);
lcdI2C.selectLine(2);
sprintf(buffer, "%s %d Mins", (isWatering ? "Watering" : " "), (millis() - lastWateredTime)/1000/60);
lcdI2C.print(buffer);
// Wait for a second before updating again
delay(1000);
}
I hope this works, Iâve not tested any of it. Iâve just typed it up in Notepad++.
@anat I built up the circuit again in circuito and see that the components are
https://www.circuito.io/app?components=9442,10167,10456,11021,13322,417986
By a process of deduction, I found that the IDs correspond to these components:
9442: Wall socket power supply
10167: Humidty and Temp sensor
10456: Solenoid
13322: Soil moisture sensor
417986: LCD 16x2 I2C
So I guess the 9442 conflicts with 512 since 512,11021 are the basic circuit with, I assume, 11201 being the Uno since a nano is 11022. I assume 512 is a different power source than the 9442 wall socket and the circuit doesnât support more than one power source. Is that correct?
I apparently didnât do something write when I typed it up. I got a lot of errors during the compiling as listed below:
Firmware:118:3: error: âisWateringâ was not declared in this scope
isWatering = false;
^
Firmware:119:27: error: âtooDryâ was not declared in this scope
if (soilMoisture5vVal < tooDry) {
^
Firmware:121:11: error: âwaterDurationSecondsâ was not declared in this scope
delay(waterDurationSeconds * 1000);
^
Firmware:126:5: error: âlastWateredTimeâ was not declared in this scope
lastWateredTime = millis();
^
Firmware:143:85: error: âlastWateredTimeâ was not declared in this scope
sprintf(buffer, â%s %d Minsâ, (isWatering ? âWateringâ : " "), (millis() - lastWateredTime)/1000/60);
^
Using library Wire at version 1.0 in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire
exit status 1
âisWateringâ was not declared in this scope
Yeah, looks like you just missed defining those variables. Search this page for them and youâll see they need to be added where the other global variables are defined.
Ok, so I defined the variables, if I got that right but I am still getting a bunch of errors that I donât quite understand. Here are the variables I defined:
#define DHT_PIN_DATA 2
#define SOILMOISTURE5V_PIN_SIG A3
#define SOLENOIDVALVE_PIN_COIL1 3
#define isWatering
#define tooDry
#define waterDurationSeconds
#define lastWateredTime
Here is the errors I am still going:
:\Users\Nate\Documents\College\ET450 Capstone\Firmware\Firmware.ino: In function âvoid loop()â:
Firmware:121:14: error: expected primary-expression before â=â token
isWatering = false;
^
Firmware:122:33: error: expected primary-expression before â)â token
if (soilMoisture5vVal < tooDry) {
^
Firmware:124:34: error: invalid type argument of unary â*â (have âintâ)
delay(waterDurationSeconds * 1000);
^
Firmware:127:16: error: expected primary-expression before â=â token
isWatering = true;
^
Firmware:129:21: error: expected primary-expression before â=â token
lastWateredTime = millis();
^
Firmware:146:45: error: expected primary-expression before â?â token
sprintf(buffer, â%s %d Minsâ, (isWatering ? âWateringâ : " "), (millis() - lastWateredTime)/1000/60);
^
Firmware:146:100: error: expected primary-expression before â)â token
sprintf(buffer, â%s %d Minsâ, (isWatering ? âWateringâ : " "), (millis() - lastWateredTime)/1000/60);
^
Using library Wire at version 1.0 in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire
exit status 1
expected primary-expression before â=â token
Thanks for all the help.
You must be in the States; I seem to get your replies just as Iâm going to bed.
Could you attach a zip of your entire .ino file please? The variables should not be defined with #define. Itâll be clearer if I just fix the file.