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