Back to Johnny Five

LCD - I2C

docs/lcd-i2c.md

2.1.01.1 KB
Original Source
<!--remove-start-->

LCD - I2C

<!--remove-end-->
Using a Grove RGB LCD with and without the Grove Shield

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

 

Run this example from the command line with:

bash
node eg/lcd-i2c.js
javascript
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

 

<!--remove-start-->

License

Copyright (c) 2012-2014 Rick Waldron [email protected] Licensed under the MIT license. Copyright (c) 2015-2023 The Johnny-Five Contributors Licensed under the MIT license.

<!--remove-end-->