qmk-keychron-q3-colemak-dh/keyboards/sergiopoverony/creator_lite/creator_lite.c
SergioPoverony 3e75afa593
Added new keyboard Creator LIte name by SergioPoverony (#70)
* Added keyboard Creator Lite by SergioPoverony

* Newline fix

* readme Creator Lite

* Update keyboard Cretor Pro, added vial keumap support
fix keymap Lite version creatro keyboard
2021-11-07 12:52:29 -05:00

20 lines
330 B
C

#include "creator_lite.h"
void matrix_init_kb(void)
{
matrix_init_user();
setPinOutput(RED_LED);
setPinOutput(BLUE_LED);
setPinOutput(GREEN_LED);
}
void turn_off_leds(void)
{
writePinLow(RED_LED);
writePinLow(BLUE_LED);
writePinLow(GREEN_LED);
}
void turn_on_led(pin_t pin)
{
writePinHigh(pin);
}