Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

tessel-i2c-lcd

f11h18BSD1.0.1

I2C LCD Display Module for Tessel

PCF8574P, LCD HD44780, nodejs, tessel, tessel2

readme

Tessel I²C LCD

I²C LCD module using PCF8574P for Tessel

Install

npm install tessel-i2c-lcd

Hardware

Tested with:

  • 1602 LCD Display Module HD44780 (16x2)

Usage Example

var tessel = require('tessel');
var LCD = require('tesse-i2c-lcd');

var lcd = new LCD(tessel.port.B, 0x27);

lcd.init()
    .then(function () {
        return lcd.home();
    })
    .then(function () {
        return lcd.print("Hello World");
    });

This allows you to drive a 1602 LCD module using I²C on your Tessel

Based on: https://github.com/sweetpi/i2c-lcd/