application.fam 562 B

1234567891011121314151617181920
  1. # qv. https://github.com/flipperdevices/flipperzero-firmware/blob/dev/documentation/AppManifests.md
  2. App(
  3. appid="cntdown_tim",
  4. name="Count Down Timer",
  5. apptype=FlipperAppType.EXTERNAL,
  6. entry_point="app_main",
  7. cdefines=["APP_COUNT_DOWN_TIMER"],
  8. requires=[
  9. "gui",
  10. ],
  11. stack_size=2 * 1024,
  12. order=20,
  13. fap_icon="cntdown_timer.png",
  14. fap_category="Tools",
  15. fap_author="@0w0mewo",
  16. fap_weburl="https://github.com/0w0mewo/fpz_cntdown_timer",
  17. fap_version="1.2",
  18. fap_description="Simple count down timer",
  19. )