Skip to content

Commit

Permalink
Merge pull request #57 from BiffoBear/fix-home-docstring
Browse files Browse the repository at this point in the history
Changed home(self) docstring to (0, 0) as dispay is 0 indexed.
  • Loading branch information
ladyada authored Feb 6, 2021
2 parents 4634bbd + 5129f16 commit 753bf02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_character_lcd/character_lcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def __init__(self, rs, en, d4, d5, d6, d7, columns, lines):
# pylint: enable-msg=too-many-arguments

def home(self):
"""Moves the cursor "home" to position (1, 1)."""
"""Moves the cursor "home" to position (0, 0)."""
self._write8(_LCD_RETURNHOME)
time.sleep(0.003)

Expand Down

0 comments on commit 753bf02

Please sign in to comment.