module_date.h 396 B

123456789101112131415161718192021
  1. #ifndef MODULE_DATE_HEADERS
  2. #define MODULE_DATE_HEADERS
  3. #include "flipper.h"
  4. #include "logic_general.h"
  5. void draw_decoded_date(
  6. Canvas* canvas,
  7. uint16_t top,
  8. DecodingDatePhase selection,
  9. int8_t century,
  10. int8_t year_10s,
  11. int8_t year_1s,
  12. int8_t month_10s,
  13. int8_t month_1s,
  14. int8_t day_in_month_10s,
  15. int8_t day_in_month_1s,
  16. int8_t day_in_week);
  17. #endif