I need help in creating the program of an automatic irrigation system with lcd

Don’t just open the INO file from the ZIP file. Windows lets you view the contents, but will not extract the files. You should download the entire source code ZIP file (https://github.com/bernhard-hofmann/circuito.io-4045/archive/master.zip) into a folder called AutoWater.

I’m guessing you didn’t download the ZIP file, or you didn’t extract all the files to a local folder.

I had no unzip file, now I download it and immediately I announce what happened:) thank you very much

i think i did it, but there is an error there and i don t understand what means: no matching function for call ,liquidCrystal pcf 8574…

I copied the library but still the same erorr:(

Sorry, in-laws came for dinner.

Is the error showing when you try compile the program in Arduino IDE? Could you copy and paste the full output with the error please?

For example, my build output shows this:

Sketch uses 6222 bytes (19%) of program storage space. Maximum is 32256 bytes.
Global variables use 579 bytes (28%) of dynamic memory, leaving 1469 bytes for local variables. Maximum is 2048 bytes.

Can you please send me the library LiquidCrystal PCF8574.h?I searched this library on the google and downloaded it(i downloaded others libraries fron google and worked,but this one doesen t:( )Please tell me what to do.Thank you,for your time,and for your patience!

Arduino: 1.8.11 (Mac OS X), Board: “Arduino Uno”

AutoWater:31:23: error: no matching function for call to ‘LiquidCrystal_PCF8574::LiquidCrystal_PCF8574()’
LiquidCrystal_PCF8574 lcdI2C;
^~~~~~
In file included from /Users/admin/Downloads/circuito.io-4045-master/AutoWater/AutoWater.ino:3:0:
/Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574/src/LiquidCrystal_PCF8574.h:35:3: note: candidate: LiquidCrystal_PCF8574::LiquidCrystal_PCF8574(int)
LiquidCrystal_PCF8574(int i2cAddr);

^~~~~~~~~~~~~~~~~~~~~
/Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574/src/LiquidCrystal_PCF8574.h:35:3: note: candidate expects 1 argument, 0 provided
Multiple libraries were found for “LiquidCrystal_PCF8574.h”
Used: /Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574
Not used: /Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574-master
Not used: /Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574-1.2.0
Not used: /Users/admin/Documents/Arduino/libraries/circuito.io-4045-master
/Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574/src/LiquidCrystal_PCF8574.h:32:7: note: candidate: constexpr LiquidCrystal_PCF8574::LiquidCrystal_PCF8574(const LiquidCrystal_PCF8574&)
class LiquidCrystal_PCF8574 : public Print

   ^~~~~~~~~~~~~~~~~~~~~

/Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574/src/LiquidCrystal_PCF8574.h:32:7: note: candidate expects 1 argument, 0 provided
/Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574/src/LiquidCrystal_PCF8574.h:32:7: note: candidate: constexpr LiquidCrystal_PCF8574::LiquidCrystal_PCF8574(LiquidCrystal_PCF8574&&)
/Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574/src/LiquidCrystal_PCF8574.h:32:7: note: candidate expects 1 argument, 0 provided
/Users/admin/Downloads/circuito.io-4045-master/AutoWater/AutoWater.ino: In function ‘void setup()’:
AutoWater:43:61: error: no matching function for call to ‘LiquidCrystal_PCF8574::begin(int, int, int, int)’
lcdI2C.begin(LCD_COLUMNS, LCD_ROWS, LCD_ADDRESS, BACKLIGHT);
^
In file included from /Users/admin/Downloads/circuito.io-4045-master/AutoWater/AutoWater.ino:3:0:
/Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574/src/LiquidCrystal_PCF8574.h:42:8: note: candidate: void LiquidCrystal_PCF8574::begin(int, int)
void begin(int cols, int rows);

    ^~~~~

/Users/admin/Documents/Arduino/libraries/LiquidCrystal_PCF8574/src/LiquidCrystal_PCF8574.h:42:8: note: candidate expects 2 arguments, 4 provided
/Users/admin/Downloads/circuito.io-4045-master/AutoWater/AutoWater.ino: In function ‘void runDiagnostics()’:
AutoWater:59:10: error: ‘class LiquidCrystal_PCF8574’ has no member named ‘selectLine’
lcdI2C.selectLine(2); // Set cursor at the begining of line 2
^~~~~~~~~~
AutoWater:66:10: error: ‘class LiquidCrystal_PCF8574’ has no member named ‘selectLine’
lcdI2C.selectLine(2);
^~~~~~~~~~
AutoWater:75:10: error: ‘class LiquidCrystal_PCF8574’ has no member named ‘selectLine’
lcdI2C.selectLine(2);
^~~~~~~~~~
AutoWater:80:10: error: ‘class LiquidCrystal_PCF8574’ has no member named ‘selectLine’
lcdI2C.selectLine(2);
^~~~~~~~~~
AutoWater:90:10: error: ‘class LiquidCrystal_PCF8574’ has no member named ‘selectLine’
lcdI2C.selectLine(2);
^~~~~~~~~~
exit status 1
no matching function for call to ‘LiquidCrystal_PCF8574::LiquidCrystal_PCF8574()’

This report would have more information with
“Show verbose output during compilation”
option enabled in File -> Preferences.

i think this is the error report,it helps you?

Why does your source use greater-than and less-than around the included files rather than double quotes?

Yours:
#include <LiquidCrystal_PCF8574.h>

Mine:
#include "LiquidCrystal_PCF8574.h"

Could you change yours please and try again, or use the code I provided.

I work from a macbook, not windows. Can this be the problem?

I checked in the file again and it s with double quotes, just like yours …so i don t know where the problem is . I am trying to send you a photo …but i can t from here…can you give me an email address or whatsup?

I doubt that the Apple/Windows difference is the issue here. The code you showed in a previous message is different to what I wrote. You wrote:

But that code is not from me. Mine starts like this:

// Include Libraries
#include "Arduino.h"
#include "LiquidCrystal_PCF8574.h"
#include "LDR.h"
#include "Button.h"
#include "Relay.h"
#include "SoilMoisture.h"

As you can see in the Github repository here: https://github.com/bernhard-hofmann/circuito.io-4045/blob/master/AutoWater.ino

You should be able to just paste the image in a reply message. It uploads it automatically - at least it does in the Chrome browser on Windows and Linux.

// Include Libraries
#include “Arduino.h”
#include “LiquidCrystal_PCF8574.h”
#include “LDR.h”
#include “Button.h”
#include “Relay.h”
#include “SoilMoisture.h”

23LiquidCrystal_PCF8574 lcdI2C; I think the error is in this line because it s the only one marked in red

It looks like you added the LiquidCrystal_PCF8574 library in Arduino. There’s no need to do that. If you remove the library, it should find the local copy which seems to have a different version.

Alternatively, you can change the lines to force it to use the local version by adding ./ like this:

#include "./LiquidCrystal_PCF8574.h"

Yes, i will remove it and try again in a moment

I removed it and there is no error anymore. I uploaded the program into the arduino . When i open the serial monitor window nothing appears on it. It should appear something if everything was ok, no?

Excellent!

I removed all the serial stuff. It should show details on the LCD. Do you already have all the components, or which ones do you have?

Beside the light sensors ,i have everything.