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/ja | |
| parent | 774384ce310588bd39a162465d90bdb19c87961c (diff) | |
| download | qmk_firmware-d846660e0080de38a9d20b05df8d11e9fbfb281f.tar.gz qmk_firmware-d846660e0080de38a9d20b05df8d11e9fbfb281f.zip | |
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/ja')
| -rw-r--r-- | docs/ja/feature_hd44780.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ja/feature_hd44780.md b/docs/ja/feature_hd44780.md index 525863253..5ca4aade1 100644 --- a/docs/ja/feature_hd44780.md +++ b/docs/ja/feature_hd44780.md | |||
| @@ -55,7 +55,7 @@ LCD_DISP_ON_CURSOR_BLINK : ディスプレイオン、点滅カーソル | |||
| 55 | ```` | 55 | ```` |
| 56 | これはキーボードの `matrix_init_kb` またはキーマップの `matrix_init_user` で行うのが最適です。 | 56 | これはキーボードの `matrix_init_kb` またはキーマップの `matrix_init_user` で行うのが最適です。 |
| 57 | 使用前にディスプレイをクリアすることをお勧めします。 | 57 | 使用前にディスプレイをクリアすることをお勧めします。 |
| 58 | そのためには、`lcd_clrsrc()` を呼びます。 | 58 | そのためには、`lcd_clrscr()` を呼びます。 |
| 59 | 59 | ||
| 60 | ディスプレイに何かを表示するには、最初に `lcd_gotoxy(column, line)` を呼びます。最初の行の先頭に移動するには、`lcd_gotoxy(0, 0)` を呼び出し、その後 `lcd_puts("example string")` を使って文字列を出力します。 | 60 | ディスプレイに何かを表示するには、最初に `lcd_gotoxy(column, line)` を呼びます。最初の行の先頭に移動するには、`lcd_gotoxy(0, 0)` を呼び出し、その後 `lcd_puts("example string")` を使って文字列を出力します。 |
| 61 | 61 | ||
