2017-12-08 08:12:41 +01:00
|
|
|
#include "do60.h"
|
|
|
|
|
2018-05-19 05:59:05 +02:00
|
|
|
extern inline void setdefaultrgb(void);
|
2017-12-08 08:12:41 +01:00
|
|
|
|
|
|
|
|
2018-05-19 05:59:05 +02:00
|
|
|
void matrix_init_kb(void) {
|
|
|
|
// Keyboard start-up code goes here
|
|
|
|
// Runs once when the firmware starts up
|
|
|
|
matrix_init_user();
|
|
|
|
led_init_ports();
|
|
|
|
setdefaultrgb();
|
|
|
|
};
|
|
|
|
|
|
|
|
void led_init_ports(void) {
|
|
|
|
// Set caps lock LED pin as output
|
2020-07-24 05:17:38 +02:00
|
|
|
setPinOutput(B2);
|
2018-05-19 05:59:05 +02:00
|
|
|
// Default to off
|
2020-07-24 05:17:38 +02:00
|
|
|
writePinHigh(B2);
|
2018-05-19 05:59:05 +02:00
|
|
|
}
|
|
|
|
|
2020-07-24 05:17:38 +02:00
|
|
|
bool led_update_kb(led_t led_state) {
|
|
|
|
if(led_update_user(led_state)) {
|
|
|
|
writePin(B2, !led_state.caps_lock);
|
|
|
|
}
|
2017-12-08 08:12:41 +01:00
|
|
|
|
2020-07-24 05:17:38 +02:00
|
|
|
return true;
|
2017-12-08 08:12:41 +01:00
|
|
|
}
|