| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- name: BAC-002 thermostat external C
- primary_entity:
- entity: climate
- dps:
- - id: 1
- type: boolean
- name: power
- mapping:
- - dps_val: false
- value: "off"
- hidden: true
- - id: 2
- type: integer
- name: temperature
- unit: C
- range:
- min: 10
- max: 70
- mapping:
- - scale: 2
- - id: 3
- type: integer
- name: current_temperature
- mapping:
- - scale: 2
- - id: 5
- type: boolean
- name: preset_mode
- mapping:
- - dps_val: true
- value: eco
- - dps_val: false
- value: comfort
- - id: 102
- type: string
- name: hvac_mode
- mapping:
- - dps_val: "0"
- constraint: power
- conditions:
- - dps_val: true
- value: cool
- - dps_val: false
- value_redirect: power
- value: "off"
- - dps_val: "1"
- constraint: power
- conditions:
- - dps_val: true
- value: heat
- - dps_val: false
- value_redirect: power
- value: "off"
- - dps_val: "2"
- constraint: power
- conditions:
- - dps_val: true
- value: fan_only
- - dps_val: false
- value_redirect: power
- value: "off"
- - id: 103
- type: string
- name: fan_mode
- mapping:
- - dps_val: "0"
- value: auto
- - dps_val: "1"
- value: high
- - dps_val: "2"
- value: medium
- - dps_val: "3"
- value: low
- secondary_entities:
- - entity: lock
- name: Child lock
- category: config
- dps:
- - id: 6
- type: boolean
- name: lock
- mapping:
- - dps_val: true
- icon: "mdi:hand-back-right-off"
- - dps_val: false
- icon: "mdi:hand-back-right"
- - entity: select
- name: Schedule
- icon: "mdi:calendar-clock"
- dps:
- - id: 4
- type: string
- name: option
- mapping:
- - dps_val: "0"
- value: program
- - dps_val: "1"
- value: manual
|