utils.h 281 B

123456789101112
  1. #ifndef __UTILS_H__
  2. #define __UTILS_H__
  3. #include <furi.h>
  4. #include <notification/notification_messages.h>
  5. void notification_beep_once();
  6. void notification_off();
  7. void notification_timeup();
  8. void parse_sec_to_time_str(char *buffer, size_t len, int32_t sec);
  9. #endif // __UTILS_H__