diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2008-11-01 22:07:48 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2008-11-01 22:07:48 +0000 |
commit | 80fc987a942fc1711b2d0858449834db9568fa07 (patch) | |
tree | 6d017b4e2983bab4d17906db0822ab58cbbf37b9 /libraries | |
parent | de4710abc813016d8a2bddcc2fb1a19be43c01de (diff) |
Fixing LiquidCrystal library example comments (d0, d1, d2, d3 => d4, d5, d6, d7).
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde | 2 | ||||
-rw-r--r-- | libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.pde | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde index 438063f..2f244d0 100644 --- a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde +++ b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde @@ -4,7 +4,7 @@ // rs on pin 12 // rw on pin 11 // enable on pin 10 -// d0, d1, d2, d3 on pins 5, 4, 3, 2 +// d4, d5, d6, d7 on pins 5, 4, 3, 2 LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2); void setup() diff --git a/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.pde b/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.pde index 940439e..0c4ce35 100644 --- a/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.pde +++ b/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.pde @@ -9,7 +9,7 @@ // rs on pin 12 // rw on pin 11 // enable on pin 10 -// d0, d1, d2, d3 on pins 5, 4, 3, 2 +// d4, d5, d6, d7 on pins 5, 4, 3, 2 LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2); void setup() |