2023-04-15 21:07:32 +10:00
|
|
|
#include "quantum.h"
|
2017-02-07 16:55:40 -08:00
|
|
|
|
2022-10-15 21:09:03 +02:00
|
|
|
void led_update_ports(led_t led_state) {
|
|
|
|
if (led_state.caps_lock) {
|
|
|
|
setPinOutput(B2);
|
|
|
|
} else {
|
|
|
|
setPinInput(B2);
|
2017-02-07 16:55:40 -08:00
|
|
|
}
|
2020-11-03 11:55:22 +11:00
|
|
|
}
|