Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion adafruit_character_lcd/character_lcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def create_char(self, location: int, pattern: Sequence[int]) -> None:
The location parameter should be between 0 and 7 and pattern should
provide an array of 8 bytes containing the pattern. E.g. you can easily
design your custom character at http://www.quinapalus.com/hd44780udg.html
To show your custom character use, for example, ``lcd.message = "\x01"``
To show your custom character use, for example, ``lcd.message = "\\x01"``

:param int location: Integer in range(8) to store the created character.
:param Sequence[int] pattern: len(8) describes created character.
Expand Down