| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- name: Air Conditioner
- products:
- - id: vfdma8hzkgpdkwlm
- # https://www.friedrich.com/professional/products/uni-fit
- # NB: Tuya calls this "Friedrich Window Unit" but these are
- # through-the-wall units
- name: Friedrich Uni-Fit Through-the-Wall AC (Models UCT14A30, UCT12A30)
- primary_entity:
- entity: climate
- dps:
- - id: 1
- type: boolean
- name: hvac_mode
- mapping:
- - dps_val: false
- value: "off"
- - dps_val: true
- constraint: mode
- conditions:
- - dps_val: cold
- value: cool
- - dps_val: wet
- value: dry
- - dps_val: wind
- value: fan_only
- - dps_val: auto
- value: auto
- - id: 2
- type: integer
- name: temperature
- unit: F
- range:
- min: 69
- max: 89
- - id: 3
- type: integer
- name: current_temperature
- - id: 4
- type: string
- name: mode
- hidden: true
- - id: 5
- type: integer
- name: fan_mode
- mapping:
- - dps_val: 3
- value: low
- - dps_val: 2
- value: medium
- - dps_val: 1
- value: high
- - dps_val: 4
- value: auto
- - id: 8
- type: boolean
- optional: true
- name: preset_mode
- mapping:
- - dps_val: true
- value: eco
- - dps_val: false
- value: comfort
- - dps_val: null
- value: comfort
- hidden: true
- secondary_entities:
- - entity: switch
- name: "Sleep Mode"
- icon: "mdi:sleep"
- translation_key: sleep
- category: config
- dps:
- - id: 101
- type: boolean
- name: switch
- - entity: sensor
- # false is C, true is F
- name: "Configured Temperature Unit"
- icon: "mdi:thermometer"
- category: diagnostic
- class: enum
- dps:
- - id: 102
- type: boolean
- # for now a read-only diagnostic sensor as changing it is not respected
- # by the firmware even though the DP is exposed
- name: sensor
- optional: true
- mapping:
- - dps_val: true
- value: "°F"
- icon: "mdi:temperature-fahrenheit"
- icon_priority: 2
- - dps_val: false
- value: "°C"
- icon: "mdi:temperature-celsius"
- icon_priority: 2
- - entity: binary_sensor
- class: problem
- category: diagnostic
- dps:
- - id: 20
- type: bitfield
- name: sensor
- mapping:
- - dps_val: 0
- value: false
- - dps_val: E1
- value: false
- - dps_val: E2
- value: false
- - value: true
- - id: 20
- type: bitfield
- name: fault_code
|