Skip to content

Commit

Permalink
LCD: adjust pins to match comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stevekinney authored and rwaldron committed Jul 7, 2015
1 parent 9e6282f commit 9ad3e0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/lcd.md
Expand Up @@ -39,8 +39,8 @@ board.on("ready", function() {
lcd = new five.LCD({
// LCD pin name RS EN DB4 DB5 DB6 DB7
// Arduino pin # 7 8 9 10 11 12
pins: [8, 9, 4, 5, 6, 7],
backlight: 10,
pins: [7, 8, 9, 10, 11, 12],
backlight: 6,
rows: 2,
cols: 20

Expand Down
4 changes: 2 additions & 2 deletions eg/lcd.js
Expand Up @@ -8,8 +8,8 @@ board.on("ready", function() {
lcd = new five.LCD({
// LCD pin name RS EN DB4 DB5 DB6 DB7
// Arduino pin # 7 8 9 10 11 12
pins: [8, 9, 4, 5, 6, 7],
backlight: 10,
pins: [7, 8, 9, 10, 11, 12],
backlight: 6,
rows: 2,
cols: 20

Expand Down

0 comments on commit 9ad3e0f

Please sign in to comment.