mirror of
https://github.com/moparisthebest/tmk_keyboard
synced 2024-11-16 06:15:13 -05:00
changed wait time for volume control.
This commit is contained in:
parent
16be834617
commit
849b10e921
@ -79,11 +79,11 @@ void proc_matrix(void) {
|
|||||||
} else if (code == KB_VOLU) {
|
} else if (code == KB_VOLU) {
|
||||||
usb_extra_audio_send(AUDIO_VOL_UP);
|
usb_extra_audio_send(AUDIO_VOL_UP);
|
||||||
usb_extra_audio_send(0);
|
usb_extra_audio_send(0);
|
||||||
_delay_ms(100);
|
_delay_ms(200);
|
||||||
} else if (code == KB_VOLD) {
|
} else if (code == KB_VOLD) {
|
||||||
usb_extra_audio_send(AUDIO_VOL_DOWN);
|
usb_extra_audio_send(AUDIO_VOL_DOWN);
|
||||||
usb_extra_audio_send(0);
|
usb_extra_audio_send(0);
|
||||||
_delay_ms(100);
|
_delay_ms(200);
|
||||||
} else if (code == KB_PWR) {
|
} else if (code == KB_PWR) {
|
||||||
if (suspend && remote_wakeup) {
|
if (suspend && remote_wakeup) {
|
||||||
usb_remote_wakeup();
|
usb_remote_wakeup();
|
||||||
|
Loading…
Reference in New Issue
Block a user