Split transport mirror (#11046)
* Split transport mirror support * Updated RGB Matrix to respond to electrical events instead of key events * split matrix slave fix
This commit is contained in:
parent
1bc8a6e5d4
commit
d1806a26e4
12 changed files with 94 additions and 60 deletions
|
@ -6,9 +6,7 @@ RGB_MATRIX_EFFECT(TYPING_HEATMAP)
|
|||
# define RGB_MATRIX_TYPING_HEATMAP_DECREASE_DELAY_MS 25
|
||||
# endif
|
||||
|
||||
void process_rgb_matrix_typing_heatmap(keyrecord_t* record) {
|
||||
uint8_t row = record->event.key.row;
|
||||
uint8_t col = record->event.key.col;
|
||||
void process_rgb_matrix_typing_heatmap(uint8_t row, uint8_t col) {
|
||||
uint8_t m_row = row - 1;
|
||||
uint8_t p_row = row + 1;
|
||||
uint8_t m_col = col - 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue