2023-04-12 03:42:51 +00:00
|
|
|
#include "quantum.h"
|
2016-06-24 02:18:20 +00:00
|
|
|
#include "led.h"
|
2016-03-16 15:27:04 +00:00
|
|
|
|
2016-03-23 01:58:44 +00:00
|
|
|
void matrix_init_kb(void) {
|
2016-04-18 01:14:37 +00:00
|
|
|
// put your keyboard start-up code here
|
|
|
|
// runs once when the firmware starts up
|
|
|
|
|
|
|
|
// Disable status LED on KB, enable status LED on Teensy (KB_STATUS = !TEENSY_STATUS)
|
|
|
|
DDRD |= (1<<6);
|
|
|
|
PORTD |= (1<<6);
|
|
|
|
|
|
|
|
matrix_init_user();
|
2016-03-16 15:27:04 +00:00
|
|
|
};
|
|
|
|
|
2022-12-09 01:42:22 +00:00
|
|
|
bool led_update_kb(led_t led_state) {
|
|
|
|
bool res = led_update_user(led_state);
|
|
|
|
if(res) {
|
|
|
|
writePin(D0, !led_state.caps_lock);
|
|
|
|
writePin(D1, !led_state.num_lock);
|
|
|
|
writePin(C6, !led_state.scroll_lock);
|
2016-03-16 15:27:04 +00:00
|
|
|
|
|
|
|
}
|
2022-12-09 01:42:22 +00:00
|
|
|
return res;
|
|
|
|
}
|