Last active
July 13, 2021 21:14
-
-
Save luuuis/73781ce0dea9070269fb589f66373afa to your computer and use it in GitHub Desktop.
ParadoxAlarmInterface troubles sensors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
binary_sensors: | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/trouble" | |
name: paradox_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/ac_failure_trouble" | |
name: paradox_ac_failure_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/low_battery_trouble" | |
name: paradox_low_battery_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/module_supervision_trouble" | |
name: paradox_module_supervision_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/module_tamper_trouble" | |
name: paradox_module_tamper_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/power_trouble" | |
name: paradox_power_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/rf_interference_trouble" | |
name: paradox_rf_interference_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/rf_low_battery_trouble" | |
name: paradox_rf_low_battery_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/timer_loss_trouble" | |
name: paradox_timer_loss_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/wireless_keypad_battery_trouble" | |
name: paradox_wireless_keypad_battery_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/zone_supervision_trouble" | |
name: paradox_zone_supervision_trouble | |
payload_on: "True" | |
payload_off: "False" | |
- platform: mqtt | |
state_topic: "paradox/states/system/troubles/zone_tamper_trouble" | |
name: paradox_zone_tamper_trouble | |
payload_on: "True" | |
payload_off: "False" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type: entity-filter | |
show_empty: false | |
entities: | |
- binary_sensor.paradox_trouble | |
- binary_sensor.paradox_ac_failure_trouble | |
- binary_sensor.paradox_low_battery_trouble | |
- binary_sensor.paradox_module_supervision_trouble | |
- binary_sensor.paradox_module_tamper_trouble | |
- binary_sensor.paradox_power_trouble | |
- binary_sensor.paradox_rf_interference_trouble | |
- binary_sensor.paradox_rf_low_battery_trouble | |
- binary_sensor.paradox_timer_loss_trouble | |
- binary_sensor.paradox_wireless_keypad_battery_trouble | |
- binary_sensor.paradox_zone_supervision_trouble | |
- binary_sensor.paradox_zone_tamper_trouble | |
state_filter: | |
- 'on' | |
card: | |
type: entities | |
title: Troubles ⚠️ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment