aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/feature_hd44780.md2
-rw-r--r--docs/ja/feature_hd44780.md2
2 files changed, 2 insertions, 2 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
50```` 50````
51This is best done in your keyboards `matrix_init_kb` or your keymaps `matrix_init_user`. 51This is best done in your keyboards `matrix_init_kb` or your keymaps `matrix_init_user`.
52It is advised to clear the display before use. 52It is advised to clear the display before use.
53To do so call `lcd_clrsrc()`. 53To do so call `lcd_clrscr()`.
54 54
55To 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")`. 55To 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")`.
56 56
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