diff options
author | floookay <33830863+floookay@users.noreply.github.com> | 2020-05-13 20:06:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 19:06:41 +0100 |
commit | d846660e0080de38a9d20b05df8d11e9fbfb281f (patch) | |
tree | 3221786431a57d0d17137f9e47470832326c7e40 /docs/feature_hd44780.md | |
parent | 774384ce310588bd39a162465d90bdb19c87961c (diff) | |
download | qmk_firmware-d846660e0080de38a9d20b05df8d11e9fbfb281f.tar.gz |
fixed typo for clear lcd screen function in hd44780 docs (#9086)
* fixed typo for clear lcd screen function
brought to attention by #9085
* fixed typo for clear lcd screen function (ja docs)
Diffstat (limited to 'docs/feature_hd44780.md')
-rw-r--r-- | docs/feature_hd44780.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_hd44780.md b/docs/feature_hd44780.md index ffcaf6eab..dc476c734 100644 --- a/docs/feature_hd44780.md +++ b/docs/feature_hd44780.md @@ -50,7 +50,7 @@ LCD_DISP_ON_CURSOR_BLINK : display on, cursor on flashing ```` This is best done in your keyboards `matrix_init_kb` or your keymaps `matrix_init_user`. It is advised to clear the display before use. -To do so call `lcd_clrsrc()`. +To do so call `lcd_clrscr()`. To now print something to your Display you first call `lcd_gotoxy(column, line)`. To go to the start of the first line you would call `lcd_gotoxy(0, 0)` and then print a string with `lcd_puts("example string")`. |