/* ATtiny85 as an I2C Master Ex2 BroHogan 1/21/11 * Modified for Digistump - Digispark LCD Shield by Erik Kettenburg 11/2012 * SETUP: * ATtiny Pin 1 = (RESET) N/U ATtiny Pin 2 = (D3) N/U * ATtiny Pin 3 = (D4) to LED1 ATtiny Pin 4 = GND * ATtiny Pin 5 = SDA on DS1621 & GPIO ATtiny Pin 6 = (D1) to LED2 * ATtiny Pin 7 = SCK on DS1621 & GPIO ATtiny Pin 8 = VCC (2.7-5.5V) * NOTE! - It's very important to use pullups on the SDA & SCL lines! * PCA8574A GPIO was used wired per instructions in "info" folder in the LiquidCrystal_I2C lib. * This ex assumes A0-A2 are set HIGH for an addeess of 0x3F * LiquidCrystal_I2C lib was modified for ATtiny - on Playground with TinyWireM lib. * TinyWireM USAGE & CREDITS: - see TinyWireM.h */ //#define DEBUG #include // I2C Master lib for ATTinys which use USI - comment this out to use with standard arduinos #include // for LCD w/ GPIO MODIFIED for the ATtiny85 #define GPIO_ADDR 0x27 // (PCA8574A A0-A2 @5V) typ. A0-A3 Gnd 0x20 / 0x38 for A - 0x27 is the address of the Digispark LCD modules. LiquidCrystal_I2C lcd(GPIO_ADDR,16,2); // set address & 16 chars / 2 lines void setup(){ TinyWireM.begin(); // initialize I2C lib - comment this out to use with standard arduinos lcd.init(); // initialize the lcd lcd.backlight(); // Print a message to the LCD. lcd.print("Digispark!"); } void loop(){ }