Skip to content

Commit

Permalink
Add switch to turn off ring to open led status
Browse files Browse the repository at this point in the history
  • Loading branch information
AzonInc committed Dec 7, 2024
1 parent ee30d67 commit dd66e57
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/de/reference/entities.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ Steuert die [Ring To Open](../guide/automation/ring-to-open) Automatisierung.
### Ring To Open: Confirmation <Badge type="tip" text="doorman_ring_to_open_confirmation" /> <Badge type="info" text="Deaktiviert" />
Steuert die Einschaltbestätigung für die [Ring To Open](../guide/automation/ring-to-open) Automatisierung.

### Ring To Open: Display Status <Badge type="tip" text="doorman_ring_to_open_led_status" /> <Badge type="info" text="Deaktiviert" />
Steuert die Status LED anzeige für die [Ring To Open](../guide/automation/ring-to-open) Automatisierung.

### Relay <Badge type="tip" text="doorman_relay" /> <Badge type="info" text="Deaktiviert" />
Steuert das eingebaute Relais.

Expand Down
5 changes: 5 additions & 0 deletions docs/en/changelog/firmware.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Release Notes & Changelog
Welcome to the latest updates! Here's a breakdown of all the **new features**, **improvements**, and important **changes** you need to know. Be sure to check out the **Breaking Changes** section for any actions needed to keep everything running smoothly.

## 2024.12.0
### 🚀 What's New?
- **Added a Switch to turn off the Status LED while Ring to Open is active**
If you don't want the Status LED to blink while Ring to Open is active, you can now simply turn it off.

## 2024.11.2
### ✨ Improvements
- **Fixed open door command**
Expand Down
3 changes: 3 additions & 0 deletions docs/en/reference/entities.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ Controls the [Ring To Open](../guide/automation/ring-to-open) automation.
### Ring To Open: Confirmation <Badge type="tip" text="doorman_ring_to_open_confirmation" /> <Badge type="info" text="Disabled by default" />
Controls the turn-on confirmation for the [Ring To Open](../guide/automation/ring-to-open) automation.

### Ring To Open: Display Status <Badge type="tip" text="doorman_ring_to_open_led_status" /> <Badge type="info" text="Disabled by default" />
Controls the Status LED for the [Ring To Open](../guide/automation/ring-to-open) automation.

### Relay <Badge type="tip" text="doorman_relay" /> <Badge type="info" text="Disabled by default" />
Controls the built-in relay.

Expand Down
12 changes: 12 additions & 0 deletions firmware/addons/ring-to-open.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,17 @@ switch:
web_server:
sorting_group_id: sorting_group_doorman_settings

- platform: template
id: doorman_ring_to_open_led_status
name: "Ring To Open: Display Status"
icon: "mdi:led-on"
restore_mode: RESTORE_DEFAULT_ON
optimistic: true
entity_category: CONFIG
disabled_by_default: true
web_server:
sorting_group_id: sorting_group_doorman_settings


select:
- platform: template
Expand Down Expand Up @@ -197,6 +208,7 @@ script:
- if:
condition:
- switch.is_on: doorman_ring_to_open
- switch.is_on: doorman_ring_to_open_led_status
then:
- light.turn_on:
id: doorman_rgb_status_led
Expand Down

0 comments on commit dd66e57

Please sign in to comment.