Skip to content

Commit

Permalink
fixed typo for clear lcd screen function in hd44780 docs (qmk#9086)
Browse files Browse the repository at this point in the history
* fixed typo for clear lcd screen function

brought to attention by qmk#9085

* fixed typo for clear lcd screen function (ja docs)
  • Loading branch information
floookay authored May 13, 2020
1 parent 774384c commit d846660
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/feature_hd44780.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")`.

Expand Down
2 changes: 1 addition & 1 deletion docs/ja/feature_hd44780.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ LCD_DISP_ON_CURSOR_BLINK : ディスプレイオン、点滅カーソル
````
これはキーボードの `matrix_init_kb` またはキーマップの `matrix_init_user` で行うのが最適です。
使用前にディスプレイをクリアすることをお勧めします。
そのためには、`lcd_clrsrc()` を呼びます。
そのためには、`lcd_clrscr()` を呼びます。

ディスプレイに何かを表示するには、最初に `lcd_gotoxy(column, line)` を呼びます。最初の行の先頭に移動するには、`lcd_gotoxy(0, 0)` を呼び出し、その後 `lcd_puts("example string")` を使って文字列を出力します。

Expand Down

0 comments on commit d846660

Please sign in to comment.