Skip to content

Commit

Permalink
Update zeitraffer.c
Browse files Browse the repository at this point in the history
  • Loading branch information
theageoflove committed Jul 11, 2023
1 parent 4e8db11 commit f8faf3b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions zeitraffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,12 +401,15 @@ int32_t zeitraffer_app(void* p) {
if(!flipper_format_write_int32(save, "Time", &Time, 1)) {notification_message(notifications, &sequence_error); break;}
if(!flipper_format_write_int32(save, "Count", &Count, 1)) {notification_message(notifications, &sequence_error); break;}
if(!flipper_format_write_int32(save, "Backlight", &Backlight, 1)) {notification_message(notifications, &sequence_error); break;}
if(!flipper_format_write_int32(save, "Delay", &Delay, 1)) {notification_message(notifications, &sequence_error); break;}
if(!flipper_format_write_int32(save, "Delay", &Delay, 1)) {
notification_message(notifications, &sequence_error);
break;
}

} while(0);



flipper_format_free(save);

furi_record_close(RECORD_STORAGE);

// Очищаем таймер
Expand Down

0 comments on commit f8faf3b

Please sign in to comment.