mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 06:50:21 +00:00
Added new notification sequence for semi_success results
This commit is contained in:
parent
3edbf8f538
commit
d65dfe1958
3 changed files with 21 additions and 1 deletions
|
@ -519,6 +519,24 @@ const NotificationSequence sequence_success = {
|
|||
NULL,
|
||||
};
|
||||
|
||||
const NotificationSequence sequence_semi_success = {
|
||||
&message_display_backlight_on,
|
||||
&message_green_255,
|
||||
&message_vibro_on,
|
||||
&message_note_c4,
|
||||
&message_delay_50,
|
||||
&message_note_e4,
|
||||
&message_delay_50,
|
||||
&message_note_g4,
|
||||
&message_delay_50,
|
||||
&message_sound_off,
|
||||
&message_delay_50,
|
||||
&message_note_c5,
|
||||
&message_delay_50,
|
||||
&message_sound_off,
|
||||
NULL,
|
||||
};
|
||||
|
||||
const NotificationSequence sequence_error = {
|
||||
&message_display_backlight_on,
|
||||
&message_red_255,
|
||||
|
|
|
@ -138,6 +138,7 @@ extern const NotificationSequence sequence_blink_stop;
|
|||
extern const NotificationSequence sequence_single_vibro;
|
||||
extern const NotificationSequence sequence_double_vibro;
|
||||
extern const NotificationSequence sequence_success;
|
||||
extern const NotificationSequence sequence_semi_success;
|
||||
extern const NotificationSequence sequence_error;
|
||||
extern const NotificationSequence sequence_audiovisual_alert;
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
entry,status,name,type,params
|
||||
Version,+,50.0,,
|
||||
Version,+,50.1,,
|
||||
Header,+,applications/drivers/subghz/cc1101_ext/cc1101_ext_interconnect.h,,
|
||||
Header,+,applications/services/bt/bt_service/bt.h,,
|
||||
Header,+,applications/services/cli/cli.h,,
|
||||
|
@ -3587,6 +3587,7 @@ Variable,+,sequence_reset_red,const NotificationSequence,
|
|||
Variable,+,sequence_reset_rgb,const NotificationSequence,
|
||||
Variable,+,sequence_reset_sound,const NotificationSequence,
|
||||
Variable,+,sequence_reset_vibro,const NotificationSequence,
|
||||
Variable,+,sequence_semi_success,const NotificationSequence,
|
||||
Variable,+,sequence_set_blue_255,const NotificationSequence,
|
||||
Variable,+,sequence_set_green_255,const NotificationSequence,
|
||||
Variable,+,sequence_set_only_blue_255,const NotificationSequence,
|
||||
|
|
|
Loading…
Reference in a new issue