aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnanya Kirti <AnanyaKirti@users.noreply.github.com>2021-08-11 06:00:56 +0530
committerGitHub <noreply@github.com>2021-08-11 10:30:56 +1000
commit8d4fcd678a083f3c6694b86b654ffe65b537929b (patch)
treeaf6905533685bfd8d40b78e3d757ace092b92688
parent817fcfdc9a146f949e1edeba088866eff8cbcde2 (diff)
downloadqmk_firmware-8d4fcd678a083f3c6694b86b654ffe65b537929b.tar.gz
qmk_firmware-8d4fcd678a083f3c6694b86b654ffe65b537929b.zip
Hp69 - Update led logic (#13940)
Co-authored-by: zvecr <git@zvecr.com>
-rw-r--r--keyboards/hp69/keymaps/via/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/hp69/keymaps/via/keymap.c b/keyboards/hp69/keymaps/via/keymap.c
index d72bdbf0b..a4743af62 100644
--- a/keyboards/hp69/keymaps/via/keymap.c
+++ b/keyboards/hp69/keymaps/via/keymap.c
@@ -54,6 +54,6 @@ void matrix_scan_user(void) {
54} 54}
55 55
56bool led_update_user(led_t led_state) { 56bool led_update_user(led_t led_state) {
57 writePin(LED_CAPS_LOCK_PIN, !led_state.caps_lock); 57 writePin(LED_CAPS_LOCK_PIN, led_state.caps_lock);
58 return false; 58 return false;
59}; 59};