3e75afa593
* 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
20 lines
330 B
C
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);
|
|
}
|