Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/arduino/Arduino.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmulya Kumar Sahoo <amulya349@gmail.com>2014-07-22 23:47:31 +0400
committerAmulya Kumar Sahoo <amulya349@gmail.com>2014-07-22 23:47:31 +0400
commit97dc72ce05ddaeb9979c02b07a31031116ebbfc3 (patch)
treeb7f3e5d2c79e2253aefc13b60e780a2cfe1c47d4
parent865594d132f388f9b6eed6597ee40e6a1daba602 (diff)
Fix of a spelling mistake
-rw-r--r--libraries/LiquidCrystal/LiquidCrystal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/LiquidCrystal/LiquidCrystal.cpp b/libraries/LiquidCrystal/LiquidCrystal.cpp
index 0653487d7..d7bd9e453 100644
--- a/libraries/LiquidCrystal/LiquidCrystal.cpp
+++ b/libraries/LiquidCrystal/LiquidCrystal.cpp
@@ -96,7 +96,7 @@ void LiquidCrystal::begin(uint8_t cols, uint8_t lines, uint8_t dotsize) {
// SEE PAGE 45/46 FOR INITIALIZATION SPECIFICATION!
// according to datasheet, we need at least 40ms after power rises above 2.7V
- // before sending commands. Arduino can turn on way befer 4.5V so we'll wait 50
+ // before sending commands. Arduino can turn on way before 4.5V so we'll wait 50
delayMicroseconds(50000);
// Now we pull both RS and R/W low to begin commands
digitalWrite(_rs_pin, LOW);