summaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorTakeshi ISHII <2170248+mtei@users.noreply.github.com>2020-12-20 11:27:54 +0900
committerGitHub <noreply@github.com>2020-12-20 13:27:54 +1100
commit63362a9c5e8251ad2d080e21d6b9af45b5adb0c4 (patch)
tree8a6aa647b53e308d22b8b8348bc06adfb0e88871 /keyboards
parent25b13678066d10b7df6b5f0102c37b4e7e44f701 (diff)
[Keymap] fix keyboards/helix/rev2/keymaps/default/oled_display.c (#11228)
Fixed the OLED display on the right side as it was showing some garbage. 右側のOLEDディスプレイにゴミが表示されていたのを修正しました。
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/helix/rev2/keymaps/default/oled_display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/helix/rev2/keymaps/default/oled_display.c b/keyboards/helix/rev2/keymaps/default/oled_display.c
index 502b62c3c3..04d6408c6c 100644
--- a/keyboards/helix/rev2/keymaps/default/oled_display.c
+++ b/keyboards/helix/rev2/keymaps/default/oled_display.c
@@ -135,6 +135,7 @@ static void render_layer_status(void) {
snprintf(buf,sizeof(buf), "%ld", layer_state);
oled_write(buf, false);
}
+ oled_write_P(PSTR("\n"), false);
}
# ifdef SSD1306OLED
@@ -160,7 +161,6 @@ void render_status(void) {
# else
render_layer_status();
# endif
- oled_write_P(PSTR("\n"), false);
// Host Keyboard LED Status
led_t led_state = host_keyboard_led_state();