Advertisement
Guest User

iZone.yaml

a guest
May 22nd, 2024
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.11 KB | Software | 0 0
  1. #
  2. # https://www.home-assistant.io/integrations/izone/
  3. #
  4. template:
  5.   - sensor:
  6.     - name: "iZone Control Zone"
  7.       unique_id: izone_control_zone
  8.       state: "{{ state_attr('climate.izone_controller_000012345','control_zone_name') }}"
  9.  
  10.     - name : "iZone Current Temperature"
  11.       unique_id: izone_current_temperature
  12.       state: "{{ state_attr('climate.izone_controller_000012345','current_temperature') }}"
  13.       unit_of_measurement: "°C"
  14.  
  15.     - name: "iZone Target Temperature"
  16.       unique_id: izone_target_temperature
  17.       state: "{{ state_attr('climate.izone_controller_000012345','control_zone_setpoint') }}"
  18.       unit_of_measurement: "°C"
  19.  
  20.     - name : "iZone Supply Temperature"
  21.       unique_id: izone_supply_temperature
  22.       state: "{{ state_attr('climate.izone_controller_000012345','supply_temperature') }}"
  23.       unit_of_measurement: "°C"
  24.  
  25. #    - name : "iZone Maximum Set Temperature"
  26. #      unique_id: izone_maximum_set_temperature
  27. #      state: "{{ state_attr('climate.izone_controller_000012345','max_temp') }}"
  28. #      unit_of_measurement: "°C"
  29.  
  30. #    - name : "iZone Minimum Set Temperature"
  31. #      unique_id: izone_minimum_set_temperature
  32. #      state: "{{ state_attr('climate.izone_controller_000012345','min_temp') }}"
  33. #      unit_of_measurement: "°C"      
  34.  
  35.     - name : "iZone HVAC Mode"
  36.       unique_id: izone_hvac_mode
  37.       state: "{{ state_attr('climate.izone_controller_000012345','hvac_mode') }}"
  38.  
  39.     - name : "iZone Fan Mode"
  40.       unique_id: izone_fan_mode
  41.       state: "{{ state_attr('climate.izone_controller_000012345','fan_mode') }}"
  42.  
  43. ####################################
  44. #
  45. #   Individual Room Temperatures
  46. #
  47.  
  48.     - name : "iZone Bedroom 1 Temperature"
  49.       unique_id: izone_bedroom_1_current_temperature
  50.       state: "{{ state_attr('climate.master_bedroom','current_temperature') }}"
  51.       unit_of_measurement: "°C"
  52.  
  53.     - name : "iZone Bedroom 2 Temperature"
  54.       unique_id: izone_bedroom_2_current_temperature
  55.       state: "{{ state_attr('climate.richard_room','current_temperature') }}"
  56.       unit_of_measurement: "°C"      
  57.  
  58.     - name : "iZone Bedroom 3 Temperature"
  59.       unique_id: izone_bedroom_3_current_temperature
  60.       state: "{{ state_attr('climate.alishia_room','current_temperature') }}"
  61.       unit_of_measurement: "°C"
  62.  
  63.     - name : "iZone Bedroom 4 Temperature"
  64.       unique_id: izone_bedroom_4_current_temperature
  65.       state: "{{ state_attr('climate.sean_room','current_temperature') }}"
  66.       unit_of_measurement: "°C"      
  67.  
  68.     - name : "iZone Kitchen Temperature"
  69.       unique_id: izone_kitchen_current_temperature
  70.       state: "{{ state_attr('climate.kitchen_dining','current_temperature') }}"
  71.       unit_of_measurement: "°C"
  72.  
  73.     - name : "iZone Lounge Room Temperature"
  74.       unique_id: izone_lounge_current_temperature
  75.       state: "{{ state_attr('climate.lounge_room','current_temperature') }}"
  76.       unit_of_measurement: "°C"
  77.  
  78.     - name : "iZone Study Temperature"
  79.       unique_id: izone_study_current_temperature
  80.       state: "{{ state_attr('climate.study','current_temperature') }}"
  81.       unit_of_measurement: "°C"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement