├── .clangd ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── README_flipperlab.md ├── actions ├── action.c ├── action.h ├── action_i.h ├── action_ibutton.c ├── action_ir.c ├── action_ir_utils.c ├── action_ir_utils.h ├── action_nfc.c ├── action_qpl.c ├── action_rfid.c ├── action_subghz.c └── helpers │ ├── subghz_txrx.c │ ├── subghz_txrx.h │ ├── subghz_txrx_i.h │ └── subghz_types.h ├── application.fam ├── images ├── .gitkeep ├── ArrowDown_8x4.png ├── ArrowUp_8x4.png ├── Directory_10px.png ├── IR_10px.png ├── NFC_10px.png ├── Playlist_10px.png ├── RFID_10px.png ├── Settings_10px.png ├── SubGHz_10px.png ├── Unknown_10px.png ├── iButton_10px.png └── quac.png ├── item.c ├── item.h ├── quac.c ├── quac.h ├── quac_settings.c ├── quac_settings.h ├── scenes ├── .gitignore ├── scene_about.c ├── scene_about.h ├── scene_action_create_group.c ├── scene_action_create_group.h ├── scene_action_ir_list.c ├── scene_action_ir_list.h ├── scene_action_rename.c ├── scene_action_rename.h ├── scene_action_settings.c ├── scene_action_settings.h ├── scene_items.c ├── scene_items.h ├── scene_settings.c ├── scene_settings.h ├── scenes.c └── scenes.h ├── screenshots ├── screenshot_1.png ├── screenshot_1_orig.png ├── screenshot_2.png ├── screenshot_2_orig.png ├── screenshot_3.png ├── screenshot_3_orig.png ├── screenshot_4.png ├── screenshot_4_90.png └── screenshot_4_orig.png └── views ├── action_menu.c └── action_menu.h /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/.clangd -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: rdefeo 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/README.md -------------------------------------------------------------------------------- /README_flipperlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/README_flipperlab.md -------------------------------------------------------------------------------- /actions/action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action.c -------------------------------------------------------------------------------- /actions/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action.h -------------------------------------------------------------------------------- /actions/action_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action_i.h -------------------------------------------------------------------------------- /actions/action_ibutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action_ibutton.c -------------------------------------------------------------------------------- /actions/action_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action_ir.c -------------------------------------------------------------------------------- /actions/action_ir_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action_ir_utils.c -------------------------------------------------------------------------------- /actions/action_ir_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action_ir_utils.h -------------------------------------------------------------------------------- /actions/action_nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action_nfc.c -------------------------------------------------------------------------------- /actions/action_qpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action_qpl.c -------------------------------------------------------------------------------- /actions/action_rfid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action_rfid.c -------------------------------------------------------------------------------- /actions/action_subghz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/action_subghz.c -------------------------------------------------------------------------------- /actions/helpers/subghz_txrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/helpers/subghz_txrx.c -------------------------------------------------------------------------------- /actions/helpers/subghz_txrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/helpers/subghz_txrx.h -------------------------------------------------------------------------------- /actions/helpers/subghz_txrx_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/helpers/subghz_txrx_i.h -------------------------------------------------------------------------------- /actions/helpers/subghz_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/actions/helpers/subghz_types.h -------------------------------------------------------------------------------- /application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/application.fam -------------------------------------------------------------------------------- /images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/ArrowDown_8x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/ArrowDown_8x4.png -------------------------------------------------------------------------------- /images/ArrowUp_8x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/ArrowUp_8x4.png -------------------------------------------------------------------------------- /images/Directory_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/Directory_10px.png -------------------------------------------------------------------------------- /images/IR_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/IR_10px.png -------------------------------------------------------------------------------- /images/NFC_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/NFC_10px.png -------------------------------------------------------------------------------- /images/Playlist_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/Playlist_10px.png -------------------------------------------------------------------------------- /images/RFID_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/RFID_10px.png -------------------------------------------------------------------------------- /images/Settings_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/Settings_10px.png -------------------------------------------------------------------------------- /images/SubGHz_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/SubGHz_10px.png -------------------------------------------------------------------------------- /images/Unknown_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/Unknown_10px.png -------------------------------------------------------------------------------- /images/iButton_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/iButton_10px.png -------------------------------------------------------------------------------- /images/quac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/images/quac.png -------------------------------------------------------------------------------- /item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/item.c -------------------------------------------------------------------------------- /item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/item.h -------------------------------------------------------------------------------- /quac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/quac.c -------------------------------------------------------------------------------- /quac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/quac.h -------------------------------------------------------------------------------- /quac_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/quac_settings.c -------------------------------------------------------------------------------- /quac_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/quac_settings.h -------------------------------------------------------------------------------- /scenes/.gitignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | .vscode 3 | .clang-format 4 | .editorconfig 5 | .env 6 | .ufbt 7 | -------------------------------------------------------------------------------- /scenes/scene_about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_about.c -------------------------------------------------------------------------------- /scenes/scene_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_about.h -------------------------------------------------------------------------------- /scenes/scene_action_create_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_action_create_group.c -------------------------------------------------------------------------------- /scenes/scene_action_create_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_action_create_group.h -------------------------------------------------------------------------------- /scenes/scene_action_ir_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_action_ir_list.c -------------------------------------------------------------------------------- /scenes/scene_action_ir_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_action_ir_list.h -------------------------------------------------------------------------------- /scenes/scene_action_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_action_rename.c -------------------------------------------------------------------------------- /scenes/scene_action_rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_action_rename.h -------------------------------------------------------------------------------- /scenes/scene_action_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_action_settings.c -------------------------------------------------------------------------------- /scenes/scene_action_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_action_settings.h -------------------------------------------------------------------------------- /scenes/scene_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_items.c -------------------------------------------------------------------------------- /scenes/scene_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_items.h -------------------------------------------------------------------------------- /scenes/scene_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_settings.c -------------------------------------------------------------------------------- /scenes/scene_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scene_settings.h -------------------------------------------------------------------------------- /scenes/scenes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scenes.c -------------------------------------------------------------------------------- /scenes/scenes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/scenes/scenes.h -------------------------------------------------------------------------------- /screenshots/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/screenshots/screenshot_1.png -------------------------------------------------------------------------------- /screenshots/screenshot_1_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/screenshots/screenshot_1_orig.png -------------------------------------------------------------------------------- /screenshots/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/screenshots/screenshot_2.png -------------------------------------------------------------------------------- /screenshots/screenshot_2_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/screenshots/screenshot_2_orig.png -------------------------------------------------------------------------------- /screenshots/screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/screenshots/screenshot_3.png -------------------------------------------------------------------------------- /screenshots/screenshot_3_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/screenshots/screenshot_3_orig.png -------------------------------------------------------------------------------- /screenshots/screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/screenshots/screenshot_4.png -------------------------------------------------------------------------------- /screenshots/screenshot_4_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/screenshots/screenshot_4_90.png -------------------------------------------------------------------------------- /screenshots/screenshot_4_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/screenshots/screenshot_4_orig.png -------------------------------------------------------------------------------- /views/action_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/views/action_menu.c -------------------------------------------------------------------------------- /views/action_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdefeo/quac/HEAD/views/action_menu.h --------------------------------------------------------------------------------