@@ -56,7 +56,21 @@ void hid_module_display_notify_volumen_down() {
5656
5757void hid_module_display_notify_play_pause () {
5858 led_control_run_effect (led_control_ble_tracking );
59- genera_screen_display_notify_information ("Notify" , "Play/Pause" );
59+ genera_screen_display_notify_information ("Notify" , "Play" );
60+ vTaskDelay (500 / portTICK_PERIOD_MS );
61+ general_screen_display_menu (hid_current_item );
62+ }
63+
64+ void hid_module_display_notify_pause () {
65+ led_control_run_effect (led_control_pulse_leds );
66+ genera_screen_display_notify_information ("Notify" , "Pause" );
67+ vTaskDelay (500 / portTICK_PERIOD_MS );
68+ general_screen_display_menu (hid_current_item );
69+ }
70+
71+ void hid_module_display_notify_stop () {
72+ led_control_run_effect (led_control_pulse_leds );
73+ genera_screen_display_notify_information ("Notify" , "Stop" );
6074 vTaskDelay (500 / portTICK_PERIOD_MS );
6175 general_screen_display_menu (hid_current_item );
6276}
@@ -75,6 +89,13 @@ void hid_module_display_notify_next_track() {
7589 general_screen_display_menu (hid_current_item );
7690}
7791
92+ void hid_module_display_notify_prev_track () {
93+ led_control_run_effect (led_control_pulse_led_left );
94+ genera_screen_display_notify_information ("Notify" , "Previous Track" );
95+ vTaskDelay (500 / portTICK_PERIOD_MS );
96+ general_screen_display_menu (hid_current_item );
97+ }
98+
7899void hid_module_display_device_pairing () {
79100 led_control_run_effect (led_control_ble_spam_breathing );
80101 genera_screen_display_notify_information ("Pairing" , "Waiting conn" );
0 commit comments