From cc11eff47ac7b3b354236bf200b2af7010adc358 Mon Sep 17 00:00:00 2001 From: cdce8p <30130371+cdce8p@users.noreply.github.com> Date: Mon, 26 Feb 2018 04:27:51 +0100 Subject: [PATCH] =?UTF-8?q?Homekit:=20TempSensor=20-=20Added=20support=20f?= =?UTF-8?q?or=20=C2=B0F=20(#4763)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * `TemperatureSensor` allows `°F` as `unit` * Fix pin code --- source/_components/homekit.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/homekit.markdown b/source/_components/homekit.markdown index 98d75d971c0..e67fcd744c9 100644 --- a/source/_components/homekit.markdown +++ b/source/_components/homekit.markdown @@ -21,7 +21,7 @@ The `HomeKit` component allows you to forward entities from Home Assistant to Ap type: map keys: pincode: - description: Pin code required during setup of HomeKit Home Assistant accessory. The format needs to be 'XXX-XX-XXX' where X is a number between 1 and 9. + description: Pin code required during setup of HomeKit Home Assistant accessory. The format needs to be 'XXX-XX-XXX' where X is a number between 0 and 9. required: false type: string default: '"123-45-678"' @@ -58,6 +58,6 @@ The following components are currently supported: | Component | Type Name | Description | | --------- | --------- | ----------- | | cover | Window | All covers that support `set_cover_position`. | -| sensor | TemperatureSensor | All sensors that have `Celsius` as their `unit_of_measurement`. | +| sensor | TemperatureSensor | All sensors that have `Celsius` and `Fahrenheit` as their `unit_of_measurement`. |
Currently only devices that are setup when Home Assistant is starting can be exposed to `HomeKit`. This means that especially `Z-Wave` components are currently not supported, since they will be setup afterwards. We are working on a solution for this problem.