diff --git a/docs/FeatureOptions.md b/docs/FeatureOptions.md index c0f633b..5be21f9 100644 --- a/docs/FeatureOptions.md +++ b/docs/FeatureOptions.md @@ -50,7 +50,7 @@ Feature options provide a rich mechanism for tailoring your `homebridge-ratgdo` | Option | Description |--------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | `Opener.ReadOnly` | Make this opener read-only by ignoring open and close requests from HomeKit. **(default: disabled)**. -| `Opener.Dimmer` | Add a dimmer accessory to control the opener. This can be useful in automation scenarios where you want to set the door to a specific percentage. This option is only available on Ratgdo devices running ESPHome firmware versions. **(default: disabled)**. +| `Opener.Dimmer` | Add a dimmer accessory to control the opener. This can be useful in automation scenarios where you want to set the door to a specific percentage. **(default: disabled)**. | `Opener.Switch` | Add a switch accessory to control the opener. This can be useful in automation scenarios where you want to work around HomeKit's security restrictions for controlling garage door openers. **(default: disabled)**. | `Opener.OccupancySensor` | Add an occupancy sensor accessory using the open state of the opener to determine occupancy. This can be useful in automation scenarios where you want to trigger an action based on the opener being open for an extended period of time. **(default: disabled)**. | `Opener.OccupancySensor.Duration.Value` | Duration, in seconds, to wait once the opener has reached the open state before indicating occupancy. **(default: 300)**. @@ -69,4 +69,3 @@ Feature options provide a rich mechanism for tailoring your `homebridge-ratgdo` | `Motion` | Make the motion sensor on the opener available in HomeKit. **(default: enabled)**. | `Motion.OccupancySensor` | Add an occupancy sensor accessory using motion sensor activity to determine occupancy. **(default: disabled)**. | `Motion.OccupancySensor.Duration.Value` | Duration, in seconds, to wait without receiving a motion event to determine when occupancy is no longer detected. **(default: 300)**. - diff --git a/src/ratgdo-options.ts b/src/ratgdo-options.ts index eab6df9..9e6decf 100644 --- a/src/ratgdo-options.ts +++ b/src/ratgdo-options.ts @@ -51,7 +51,7 @@ export const featureOptions: { [index: string]: FeatureOptionEntry[] } = { "Opener": [ { default: false, description: "Make this opener read-only by ignoring open and close requests from HomeKit.", name: "ReadOnly" }, - { default: false, description: "Add a dimmer accessory to control the opener. This can be useful in automation scenarios where you want to set the door to a specific percentage. This option is only available on Ratgdo devices running ESPHome firmware versions.", name: "Dimmer" }, + { default: false, description: "Add a dimmer accessory to control the opener. This can be useful in automation scenarios where you want to set the door to a specific percentage.", name: "Dimmer" }, { default: false, description: "Add a switch accessory to control the opener. This can be useful in automation scenarios where you want to work around HomeKit's security restrictions for controlling garage door openers.", name: "Switch" }, { default: false, description: "Add an occupancy sensor accessory using the open state of the opener to determine occupancy. This can be useful in automation scenarios where you want to trigger an action based on the opener being open for an extended period of time.", name: "OccupancySensor" }, { default: false, defaultValue: RATGDO_OCCUPANCY_DURATION, description: "Duration, in seconds, to wait once the opener has reached the open state before indicating occupancy.", group: "OccupancySensor", name: "OccupancySensor.Duration" },