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.
36 lines
612 B
36 lines
612 B
#include <Arduino.h>
|
|
#include "Model01.h"
|
|
|
|
Model01::Model01(void) {
|
|
|
|
}
|
|
|
|
void Model01::setup(void) {
|
|
}
|
|
|
|
|
|
void Model01::led_set_crgb_at(byte row, byte col, cRGB color) {
|
|
}
|
|
|
|
cRGB Model01::get_key_color(byte row, byte col) {
|
|
}
|
|
|
|
void Model01::led_set_crgb_at(uint8_t i, cRGB crgb) {
|
|
}
|
|
|
|
void Model01::led_sync() {
|
|
}
|
|
|
|
|
|
void Model01::scan_matrix() {
|
|
//scan the Keyboard matrix looking for connections
|
|
for (byte row = 0; row < LEFT_ROWS; row++) {
|
|
|
|
for (byte col = 0; col < LEFT_COLS; col++) {
|
|
handle_key_event(row, col);
|
|
handle_key_event(row, (COLS - 1) - col);
|
|
}
|
|
}
|
|
}
|
|
|