From cf5e010faf1e3d7384e5785f14ad12d07fe62f65 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Thu, 11 Jul 2024 21:47:31 -0700 Subject: [PATCH] homekit: add codes to readme --- plugins/homekit/src/camera-mixin.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/homekit/src/camera-mixin.ts b/plugins/homekit/src/camera-mixin.ts index cfb0f28577..c720e2506f 100644 --- a/plugins/homekit/src/camera-mixin.ts +++ b/plugins/homekit/src/camera-mixin.ts @@ -69,6 +69,16 @@ The recommended codec settings for cameras in HomeKit can be viewed in the [Home The latest troubleshooting guide for all known streaming or recording issues can be viewed in the [HomeKit plugin](#/device/${id}).`; + if (this.storageSettings.values.standalone) { + readme += ` + +## HomeKit Pairing + +${this.storageSettings.values.pincode} +${this.storageSettings.values.qrCode} + ` + } + return readme; }