├── .github ├── f0-fap-lint.patch └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── application.fam ├── docs ├── apps_list.png ├── images_example.gif └── submenu_example.png ├── images_example ├── app.c ├── app.h ├── icon_app.png ├── images │ ├── SaturnLeft_16x21 │ │ ├── frame_01.png │ │ ├── frame_02.png │ │ └── frame_rate │ ├── SaturnRight_16x21 │ │ ├── frame_01.png │ │ ├── frame_02.png │ │ └── frame_rate │ ├── SaturnTrash_22x29.png │ └── Saturn_16x21 │ │ ├── frame_01.png │ │ ├── frame_02.png │ │ └── frame_rate ├── view_images.c └── view_images.h ├── led_rainbow ├── app.c ├── app.h ├── icon_app.png ├── view_led_rainbow.c └── view_led_rainbow.h ├── sprite_sandbox ├── app.c ├── app.h ├── icon_app.png ├── images │ ├── PokemonPlayerDown_16 │ │ ├── frame_01.png │ │ ├── frame_02.png │ │ ├── frame_03.png │ │ ├── frame_04.png │ │ └── frame_rate │ ├── PokemonPlayerLeft_16 │ │ ├── frame_01.png │ │ ├── frame_02.png │ │ └── frame_rate │ ├── PokemonPlayerRight_16 │ │ ├── frame_01.png │ │ ├── frame_02.png │ │ └── frame_rate │ └── PokemonPlayerUp_16 │ │ ├── frame_01.png │ │ ├── frame_02.png │ │ ├── frame_03.png │ │ ├── frame_04.png │ │ └── frame_rate ├── sprite_walk.c ├── sprite_walk.h ├── view_sprite_sandbox.c └── view_sprite_sandbox.h ├── submenu_example ├── app.c ├── app.h ├── icon_app.png ├── views.c └── views.h ├── view_dispatcher_example ├── app.c ├── app.h ├── icon_app.png ├── view_main.c └── view_main.h └── viewport_example ├── app.c ├── app.h └── icon_app.png /.github/f0-fap-lint.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/.github/f0-fap-lint.patch -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/README.md -------------------------------------------------------------------------------- /application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/application.fam -------------------------------------------------------------------------------- /docs/apps_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/docs/apps_list.png -------------------------------------------------------------------------------- /docs/images_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/docs/images_example.gif -------------------------------------------------------------------------------- /docs/submenu_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/docs/submenu_example.png -------------------------------------------------------------------------------- /images_example/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/app.c -------------------------------------------------------------------------------- /images_example/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/app.h -------------------------------------------------------------------------------- /images_example/icon_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/icon_app.png -------------------------------------------------------------------------------- /images_example/images/SaturnLeft_16x21/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/images/SaturnLeft_16x21/frame_01.png -------------------------------------------------------------------------------- /images_example/images/SaturnLeft_16x21/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/images/SaturnLeft_16x21/frame_02.png -------------------------------------------------------------------------------- /images_example/images/SaturnLeft_16x21/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /images_example/images/SaturnRight_16x21/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/images/SaturnRight_16x21/frame_01.png -------------------------------------------------------------------------------- /images_example/images/SaturnRight_16x21/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/images/SaturnRight_16x21/frame_02.png -------------------------------------------------------------------------------- /images_example/images/SaturnRight_16x21/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /images_example/images/SaturnTrash_22x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/images/SaturnTrash_22x29.png -------------------------------------------------------------------------------- /images_example/images/Saturn_16x21/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/images/Saturn_16x21/frame_01.png -------------------------------------------------------------------------------- /images_example/images/Saturn_16x21/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/images/Saturn_16x21/frame_02.png -------------------------------------------------------------------------------- /images_example/images/Saturn_16x21/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /images_example/view_images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/view_images.c -------------------------------------------------------------------------------- /images_example/view_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/images_example/view_images.h -------------------------------------------------------------------------------- /led_rainbow/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/led_rainbow/app.c -------------------------------------------------------------------------------- /led_rainbow/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/led_rainbow/app.h -------------------------------------------------------------------------------- /led_rainbow/icon_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/led_rainbow/icon_app.png -------------------------------------------------------------------------------- /led_rainbow/view_led_rainbow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/led_rainbow/view_led_rainbow.c -------------------------------------------------------------------------------- /led_rainbow/view_led_rainbow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/led_rainbow/view_led_rainbow.h -------------------------------------------------------------------------------- /sprite_sandbox/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/app.c -------------------------------------------------------------------------------- /sprite_sandbox/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/app.h -------------------------------------------------------------------------------- /sprite_sandbox/icon_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/icon_app.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerDown_16/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerDown_16/frame_01.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerDown_16/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerDown_16/frame_02.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerDown_16/frame_03.png: -------------------------------------------------------------------------------- 1 | frame_01.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerDown_16/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerDown_16/frame_04.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerDown_16/frame_rate: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerLeft_16/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerLeft_16/frame_01.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerLeft_16/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerLeft_16/frame_02.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerLeft_16/frame_rate: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerRight_16/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerRight_16/frame_01.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerRight_16/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerRight_16/frame_02.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerRight_16/frame_rate: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerUp_16/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerUp_16/frame_01.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerUp_16/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerUp_16/frame_02.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerUp_16/frame_03.png: -------------------------------------------------------------------------------- 1 | frame_01.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerUp_16/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/images/PokemonPlayerUp_16/frame_04.png -------------------------------------------------------------------------------- /sprite_sandbox/images/PokemonPlayerUp_16/frame_rate: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /sprite_sandbox/sprite_walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/sprite_walk.c -------------------------------------------------------------------------------- /sprite_sandbox/sprite_walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/sprite_walk.h -------------------------------------------------------------------------------- /sprite_sandbox/view_sprite_sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/view_sprite_sandbox.c -------------------------------------------------------------------------------- /sprite_sandbox/view_sprite_sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/sprite_sandbox/view_sprite_sandbox.h -------------------------------------------------------------------------------- /submenu_example/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/submenu_example/app.c -------------------------------------------------------------------------------- /submenu_example/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/submenu_example/app.h -------------------------------------------------------------------------------- /submenu_example/icon_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/submenu_example/icon_app.png -------------------------------------------------------------------------------- /submenu_example/views.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/submenu_example/views.c -------------------------------------------------------------------------------- /submenu_example/views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/submenu_example/views.h -------------------------------------------------------------------------------- /view_dispatcher_example/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/view_dispatcher_example/app.c -------------------------------------------------------------------------------- /view_dispatcher_example/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/view_dispatcher_example/app.h -------------------------------------------------------------------------------- /view_dispatcher_example/icon_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/view_dispatcher_example/icon_app.png -------------------------------------------------------------------------------- /view_dispatcher_example/view_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/view_dispatcher_example/view_main.c -------------------------------------------------------------------------------- /view_dispatcher_example/view_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/view_dispatcher_example/view_main.h -------------------------------------------------------------------------------- /viewport_example/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/viewport_example/app.c -------------------------------------------------------------------------------- /viewport_example/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/viewport_example/app.h -------------------------------------------------------------------------------- /viewport_example/icon_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smkent/f0-apps/HEAD/viewport_example/icon_app.png --------------------------------------------------------------------------------