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.
15 lines
357 B
15 lines
357 B
9 years ago
|
#include "KeyboardConfig.h"
|
||
|
|
||
9 years ago
|
HARDWARE_IMPLEMENTATION KeyboardHardware;
|
||
9 years ago
|
|
||
9 years ago
|
// These global proxy functions are a cheap hack to avoid
|
||
|
void led_set_crgb_at(uint8_t i, cRGB crgb) {
|
||
9 years ago
|
KeyboardHardware.led_set_crgb_at(i,crgb);
|
||
|
}
|
||
8 years ago
|
cRGB led_get_crgb_at(uint8_t i) {
|
||
9 years ago
|
KeyboardHardware.led_get_crgb_at(i);
|
||
|
}
|
||
9 years ago
|
void led_sync(void) {
|
||
|
KeyboardHardware.led_sync();
|
||
|
}
|