#include #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() { uint8_t key_data; //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, &key_data); handle_key_event(row, (COLS - 1) - col, &key_data); } } }