Handle Haptic Feedback play on each half with support for remote sending
This commit is contained in:
parent
26ec38782e
commit
7ba6f4d639
5 changed files with 38 additions and 12 deletions
|
@ -506,6 +506,10 @@ void switch_events(uint8_t row, uint8_t col, bool pressed) {
|
|||
#if defined(RGB_MATRIX_ENABLE)
|
||||
rgb_matrix_handle_key_event(row, col, pressed);
|
||||
#endif
|
||||
#if defined(HAPTIC_ENABLE) && defined(SPLIT_HAPTIC_ENABLE)
|
||||
void haptic_handle_key_event(uint8_t row, uint8_t col, bool pressed);
|
||||
haptic_handle_key_event(row, col, pressed);
|
||||
#endif // HAPTIC_ENABLE && SPLIT_HAPTIC_ENABLE
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue