├── .gitignore ├── LICENSE ├── README.md └── games ├── connect_wires ├── .gitignore ├── LICENSE ├── README-catalog.md ├── README.md ├── application.fam ├── flipper_game_connect_wires.c ├── flipper_game_connect_wires_10x.png └── screenshots │ ├── 1.png │ ├── 2.png │ └── 3.png └── hanoi_towers ├── .gitignore ├── LICENSE ├── README-catalog.md ├── README.md ├── application.fam ├── flipper_game_hanoi_towers.c ├── flipper_game_hanoi_towers_10x.png └── screenshots ├── 1.png ├── 2.png └── 3.png /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/README.md -------------------------------------------------------------------------------- /games/connect_wires/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /games/connect_wires/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/connect_wires/LICENSE -------------------------------------------------------------------------------- /games/connect_wires/README-catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/connect_wires/README-catalog.md -------------------------------------------------------------------------------- /games/connect_wires/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/connect_wires/README.md -------------------------------------------------------------------------------- /games/connect_wires/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/connect_wires/application.fam -------------------------------------------------------------------------------- /games/connect_wires/flipper_game_connect_wires.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/connect_wires/flipper_game_connect_wires.c -------------------------------------------------------------------------------- /games/connect_wires/flipper_game_connect_wires_10x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/connect_wires/flipper_game_connect_wires_10x.png -------------------------------------------------------------------------------- /games/connect_wires/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/connect_wires/screenshots/1.png -------------------------------------------------------------------------------- /games/connect_wires/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/connect_wires/screenshots/2.png -------------------------------------------------------------------------------- /games/connect_wires/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/connect_wires/screenshots/3.png -------------------------------------------------------------------------------- /games/hanoi_towers/.gitignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | .vscode 3 | .clang-format 4 | .editorconfig 5 | .env 6 | .ufbt 7 | -------------------------------------------------------------------------------- /games/hanoi_towers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/hanoi_towers/LICENSE -------------------------------------------------------------------------------- /games/hanoi_towers/README-catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/hanoi_towers/README-catalog.md -------------------------------------------------------------------------------- /games/hanoi_towers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/hanoi_towers/README.md -------------------------------------------------------------------------------- /games/hanoi_towers/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/hanoi_towers/application.fam -------------------------------------------------------------------------------- /games/hanoi_towers/flipper_game_hanoi_towers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/hanoi_towers/flipper_game_hanoi_towers.c -------------------------------------------------------------------------------- /games/hanoi_towers/flipper_game_hanoi_towers_10x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/hanoi_towers/flipper_game_hanoi_towers_10x.png -------------------------------------------------------------------------------- /games/hanoi_towers/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/hanoi_towers/screenshots/1.png -------------------------------------------------------------------------------- /games/hanoi_towers/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/hanoi_towers/screenshots/2.png -------------------------------------------------------------------------------- /games/hanoi_towers/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexTaran/flipperzero/HEAD/games/hanoi_towers/screenshots/3.png --------------------------------------------------------------------------------