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!
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 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?
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.
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:
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?