1
0
Fork 0

Handle Haptic Feedback play on each half with support for remote sending

This commit is contained in:
Drashna Jael're 2024-10-26 15:43:20 -07:00
parent 26ec38782e
commit 7ba6f4d639
Signed by: drashna
GPG key ID: DBA1FD3A860D1B11
5 changed files with 38 additions and 12 deletions

View file

@ -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
}
/**