├── .github └── workflows │ ├── new_dist.yml │ └── release.yml ├── .gitignore ├── Makefile ├── README.md ├── application.fam ├── firmware_version.txt └── plugins └── supported_cards └── hotwater.c /.github/workflows/new_dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/flipper_kdf/HEAD/.github/workflows/new_dist.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/flipper_kdf/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | flipperzero-firmware/ 2 | .vscode 3 | build/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/flipper_kdf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/flipper_kdf/HEAD/README.md -------------------------------------------------------------------------------- /application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/flipper_kdf/HEAD/application.fam -------------------------------------------------------------------------------- /firmware_version.txt: -------------------------------------------------------------------------------- 1 | Build Result: 2 | 3 | -------------------------------------------------------------------------------- /plugins/supported_cards/hotwater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/flipper_kdf/HEAD/plugins/supported_cards/hotwater.c --------------------------------------------------------------------------------