Skip to content

Commit 753bf02

Browse files
authored
Merge pull request #57 from BiffoBear/fix-home-docstring
Changed home(self) docstring to (0, 0) as dispay is 0 indexed.
2 parents 4634bbd + 5129f16 commit 753bf02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_character_lcd/character_lcd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def __init__(self, rs, en, d4, d5, d6, d7, columns, lines):
158158
# pylint: enable-msg=too-many-arguments
159159

160160
def home(self):
161-
"""Moves the cursor "home" to position (1, 1)."""
161+
"""Moves the cursor "home" to position (0, 0)."""
162162
self._write8(_LCD_RETURNHOME)
163163
time.sleep(0.003)
164164

0 commit comments

Comments
 (0)