Skip to content

Commit 70536dc

Browse files
committed
Set delay to 3ms instead of 2ms
1 parent 1495781 commit 70536dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Adafruit_CharLCD/Adafruit_CharLCD.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ def begin(self, cols, lines):
9797
def home(self):
9898

9999
self.write4bits(self.LCD_RETURNHOME) # set cursor position to zero
100-
self.delayMicroseconds(2000) # this command takes a long time!
100+
self.delayMicroseconds(3000) # this command takes a long time!
101101

102102

103103
def clear(self):
104104

105105
self.write4bits(self.LCD_CLEARDISPLAY) # command to clear display
106-
self.delayMicroseconds(2000) # 2000 microsecond sleep, clearing the display takes a long time
106+
self.delayMicroseconds(3000) # 3000 microsecond sleep, clearing the display takes a long time
107107

108108

109109
def setCursor(self, col, row):

0 commit comments

Comments
 (0)