No such luck, if I follow the instructions as described, I get an error that lcd is not declared in this scope
It complies if i use the example within the Adagfruit folder... so not sure whats going on there.
I completely replaced the TinyWireM file, and I already have all of the cores it was wanting me to use.
I added in coding from the other sketches to get it to compile, but that just puts me back at square one.
#include <TinyWireM.h> // ATtiny I2C communication
//#include <Adafruit_RGBLCDShield.h> // RGB LCD Shield communications
#include <LiquidCrystal_I2C.h>
//Adafruit_RGBLCDShield lcd = Adafruit_RGBLCDShield();
#define GPIO_ADDR 0x27
LiquidCrystal_I2C lcd(GPIO_ADDR,16,2);
long secs = 0;
void setup()
{
lcd.begin(16, 2); // set up the LCD's number of columns and rows.
lcd.setBacklight(7); // For monochrome LCD lcd.setBacklight(ON)
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Hello World!");
}
void loop()
{
}