application.fam 606 B

1234567891011121314151617
  1. # For details & more options, see documentation/AppManifests.md in firmware repo
  2. App(
  3. appid="flip_rob", # Must be unique
  4. name="R.O.B. Control", # Displayed in menus
  5. apptype=FlipperAppType.EXTERNAL,
  6. entry_point="flip_rob_app",
  7. stack_size=2 * 1024,
  8. fap_category="Infrared",
  9. # Optional values
  10. # fap_version="0.1",
  11. fap_icon="flip_rob.png", # 10x10 1-bit PNG
  12. fap_description="Control Nintendo R.O.B.",
  13. fap_author="John Riney III",
  14. fap_weburl="https://github.com/riney/flip_rob",
  15. fap_icon_assets="images", # Image assets to compile for this application
  16. )