You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
333 B
26 lines
333 B
5 years ago
|
#include "2x5keypad.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);
|
||
|
}
|