summaryrefslogtreecommitdiffstats
path: root/keyboards/hp69
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 /keyboards/hp69
parent817fcfdc9a146f949e1edeba088866eff8cbcde2 (diff)
Hp69 - Update led logic (#13940)
Co-authored-by: zvecr <git@zvecr.com>
Diffstat (limited to 'keyboards/hp69')
-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 d72bdbf0b1..a4743af623 100644
--- a/keyboards/hp69/keymaps/via/keymap.c
+++ b/keyboards/hp69/keymaps/via/keymap.c
@@ -54,6 +54,6 @@ void matrix_scan_user(void) {
}
bool led_update_user(led_t led_state) {
- writePin(LED_CAPS_LOCK_PIN, !led_state.caps_lock);
+ writePin(LED_CAPS_LOCK_PIN, led_state.caps_lock);
return false;
};