Skip to content

Latest commit

 

History

History
75 lines (35 loc) · 1.07 KB

lcd-i2c.md

File metadata and controls

75 lines (35 loc) · 1.07 KB

LCD - I2C

Breadboard for "LCD - I2C"

docs/breadboard/lcd-i2c.png

Fritzing diagram: docs/breadboard/lcd-i2c.fzz

 

Run this example from the command line with:

node eg/lcd-i2c.js
var five = require("johnny-five");
var board = new five.Board();

board.on("ready", function() {

  var lcd = new five.LCD({
    controller: "JHD1313M1"
  });

  lcd.useChar("heart");

  lcd.cursor(0, 0).print("hello :heart:");

  lcd.blink();

  lcd.cursor(1, 0).print("Blinking? ");
});

Additional Notes

Grove - LCD RGB w/ Backlight Grove LCD RGB

 

License

Copyright (c) 2012, 2013, 2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2016 The Johnny-Five Contributors Licensed under the MIT license.