var i = new I2C();
i.setup({scl:B6, sda:B7});
// PCF8574AT based IO expanders default to address 0x3F
var lcd = require("HD44780").connectI2C(i);
lcd.print("Hello World!");
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Using software I2C seems to work with b6/b7
1 Attachment