Migrate led_update_kb
implementations to DD (#23983)
This commit is contained in:
parent
17498fa48a
commit
7824e7ed9b
52 changed files with 111 additions and 660 deletions
|
@ -1,39 +0,0 @@
|
|||
/* Copyright 2020 Worldspawn <mcmancuso@gmail.com>
|
||||
*
|
||||
* 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"
|
||||
|
||||
|
||||
void matrix_init_kb(void) {
|
||||
gpio_set_pin_output(D3);
|
||||
gpio_write_pin_low(D3);
|
||||
gpio_set_pin_output(D2);
|
||||
gpio_write_pin_low(D2);
|
||||
gpio_set_pin_output(D0);
|
||||
gpio_write_pin_low(D0);
|
||||
|
||||
matrix_init_user();
|
||||
};
|
||||
|
||||
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(D0, led_state.caps_lock);
|
||||
gpio_write_pin(D2, led_state.scroll_lock);
|
||||
}
|
||||
return res;
|
||||
}
|
|
@ -8,6 +8,11 @@
|
|||
"pid": "0x56D9",
|
||||
"device_version": "0.0.1"
|
||||
},
|
||||
"indicators": {
|
||||
"caps_lock": "D0",
|
||||
"num_lock": "D3",
|
||||
"scroll_lock": "D2"
|
||||
},
|
||||
"rgblight": {
|
||||
"saturation_steps": 8,
|
||||
"brightness_steps": 8,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue