diff options
author | Joel Challis <git@zvecr.com> | 2024-06-22 12:14:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-22 12:14:17 +0100 |
commit | 7824e7ed9ba3e79103625b6f038033eb3f5c5320 (patch) | |
tree | c2a9095508b7f451a49b0b192d742194b83f485b /keyboards/team0110 | |
parent | 17498fa48a8c5c0ac439e59d0db12a41954d4fb0 (diff) |
Migrate `led_update_kb` implementations to DD (#23983)
Diffstat (limited to 'keyboards/team0110')
-rw-r--r-- | keyboards/team0110/p1800fl/keyboard.json | 5 | ||||
-rw-r--r-- | keyboards/team0110/p1800fl/p1800fl.c | 28 |
2 files changed, 5 insertions, 28 deletions
diff --git a/keyboards/team0110/p1800fl/keyboard.json b/keyboards/team0110/p1800fl/keyboard.json index a56864cd36..681482db5b 100644 --- a/keyboards/team0110/p1800fl/keyboard.json +++ b/keyboards/team0110/p1800fl/keyboard.json @@ -34,6 +34,11 @@ "levels": 5, "breathing": true }, + "indicators": { + "caps_lock": "D5", + "num_lock": "D3", + "scroll_lock": "C6" + }, "rgblight": { "saturation_steps": 8, "brightness_steps": 8, diff --git a/keyboards/team0110/p1800fl/p1800fl.c b/keyboards/team0110/p1800fl/p1800fl.c deleted file mode 100644 index 9f47b8a5c4..0000000000 --- a/keyboards/team0110/p1800fl/p1800fl.c +++ /dev/null @@ -1,28 +0,0 @@ -/* Copyright 2020 marhalloweenvt - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#include "quantum.h" - -bool led_update_kb(led_t led_state) { - bool res = led_update_user(led_state); - if(res) { - gpio_write_pin(D3, led_state.num_lock); - gpio_write_pin(D5, led_state.caps_lock); - gpio_write_pin(C6, led_state.scroll_lock); - } - return res; -} - |