Well I am able to get my program to compile now but when I send it to the ATtiny85 connected to
the LCD it shows nothing i dont get errors...I have triple checked my connections i know the I2C
address is correct ? well here is the code .. I need to figure this OUT as it is for an Important project
#include <TinyWireM.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2); // set address & 16 chars / 2 lines
void setup()
{
TinyWireM.begin(); // initialize I2C lib
lcd.init(); // initialize the lcd
lcd.begin(16,2); // initialize the lcd added and wo
lcd.backlight();
lcd.clear(); // Print a message to the LCD.
}
void loop()
{
lcd.setCursor(0,0);
lcd.print("HELLO");
}