Hello! I'm working on a project with an I2C LCD display using the LiquidCrystal_I2C library. It works fine using the standard Arduino IDE, but when the same code is pasted into codebender, I get the following error:
Untitled_Project.ino:28:53: error: use of undeclared identifier 'POSITIVE'
LiquidCrystal_I2C lcd(0x20, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
Most examples use a deceleration like LiquidCrystal_I2C lcd(0x20,16,2);
to declare the size of the display. For some reason the preceding format only seems to work with my I2C adapter. Is this a problem with codebender, or the library?