@@ -120,7 +120,7 @@ int dcf77_clock_sync_app_main(void* p) {
120
120
121
121
if (app -> dt .second < 59 ) {
122
122
if (running ) {
123
- furi_hal_light_set ( LightRed | LightGreen | LightBlue , 0 );
123
+ notification_message ( notification , & sequence_reset_rgb );
124
124
furi_hal_rfid_tim_read_stop ();
125
125
furi_hal_pwm_stop (FuriHalPwmOutputIdLptim2PA4 );
126
126
furi_hal_gpio_init (
@@ -130,7 +130,7 @@ int dcf77_clock_sync_app_main(void* p) {
130
130
furi_delay_ms (silence_ms );
131
131
furi_hal_rfid_tim_read_start (DCF77_FREQ , 0.5 );
132
132
furi_hal_pwm_start (FuriHalPwmOutputIdLptim2PA4 , DCF77_FREQ , 50 );
133
- furi_hal_light_set ( LightBlue , 0xFF );
133
+ notification_message ( notification , & sequence_set_only_blue_255 );
134
134
running = true;
135
135
} else
136
136
set_time (app , DCF77_OFFSET + 1 );
@@ -157,10 +157,11 @@ int dcf77_clock_sync_app_main(void* p) {
157
157
if (running ) {
158
158
furi_hal_rfid_tim_read_stop ();
159
159
furi_hal_pwm_stop (FuriHalPwmOutputIdLptim2PA4 );
160
- furi_hal_light_set ( LightRed | LightGreen | LightBlue , 0 );
160
+ notification_message ( notification , & sequence_reset_rgb );
161
161
}
162
162
163
163
notification_message_block (notification , & sequence_display_backlight_enforce_auto );
164
+ notification_message (notification , & sequence_reset_rgb );
164
165
165
166
view_port_enabled_set (view_port , false);
166
167
gui_remove_view_port (gui , view_port );
0 commit comments