├── .gitignore ├── README.md ├── assets ├── HOME.KEY.COLOR.BLACK.webp ├── HOME.KEY.COLOR.GOLD.webp ├── HOME.KEY.COLOR.SILVER.webp ├── HOME.KEY.COLOR.TAN.webp ├── HOME.KEY.FAST.DEMO.webp ├── HOME.KEY.PHONE.DEMO.webp ├── HOME.KEY.WATCH.DEMO.webp └── PN532.CONNECTION.DEMO.webp └── resources ├── README.md ├── nfc_df_fast_success.log ├── nfc_km_fast_standard_exchange_configuration_success.log └── nfc_km_fast_success.log /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/README.md -------------------------------------------------------------------------------- /assets/HOME.KEY.COLOR.BLACK.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/assets/HOME.KEY.COLOR.BLACK.webp -------------------------------------------------------------------------------- /assets/HOME.KEY.COLOR.GOLD.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/assets/HOME.KEY.COLOR.GOLD.webp -------------------------------------------------------------------------------- /assets/HOME.KEY.COLOR.SILVER.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/assets/HOME.KEY.COLOR.SILVER.webp -------------------------------------------------------------------------------- /assets/HOME.KEY.COLOR.TAN.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/assets/HOME.KEY.COLOR.TAN.webp -------------------------------------------------------------------------------- /assets/HOME.KEY.FAST.DEMO.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/assets/HOME.KEY.FAST.DEMO.webp -------------------------------------------------------------------------------- /assets/HOME.KEY.PHONE.DEMO.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/assets/HOME.KEY.PHONE.DEMO.webp -------------------------------------------------------------------------------- /assets/HOME.KEY.WATCH.DEMO.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/assets/HOME.KEY.WATCH.DEMO.webp -------------------------------------------------------------------------------- /assets/PN532.CONNECTION.DEMO.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/assets/PN532.CONNECTION.DEMO.webp -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/resources/README.md -------------------------------------------------------------------------------- /resources/nfc_df_fast_success.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/resources/nfc_df_fast_success.log -------------------------------------------------------------------------------- /resources/nfc_km_fast_standard_exchange_configuration_success.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/resources/nfc_km_fast_standard_exchange_configuration_success.log -------------------------------------------------------------------------------- /resources/nfc_km_fast_success.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kormax/apple-home-key/HEAD/resources/nfc_km_fast_success.log --------------------------------------------------------------------------------