Skip to content

Latest commit

 

History

History
49 lines (42 loc) · 1.54 KB

directors.md

File metadata and controls

49 lines (42 loc) · 1.54 KB

directors

Director is an entity that brings everything together. There is one director per one HVAC unit.

Best explained by example:

  directors:
    - id: house-unit1
      connectors:
        - influxdb-connector-house
        - http-connector-appspot-v3
      sensor-feed-mapping:
        bedroom-nw-temperature: bedroom-nw
        bedroom-se-temperature: bedroom-se
      unit: unit1
      hvac: heatpump-unit1
      mode: heating
    - id: server-room
      connectors:
        - influxdb-connector-house
        - http-connector-appspot-v3
      sensor-feed-mapping:
        server-room-temperature: room-server
      unit: fan-panel
      hvac: fan-panel-server-room
      mode: cooling
  • id: Unique identifier this entity will be known as to the rest of the system.
  • connectors: List of references to connectors. Optional. Currently available connectors are:
  • sensor-feed-mapping: List of relations from the sensor reference (on the left) to the zone it is serving (on the right).
  • unit: Unit abstraction to use.
  • hvac: HVAC device to use.
  • mode: Initial mode for this director. Note that the configuration above shows different units in different modes (yes, this is supported).

Property of

Used in


^^^ Configuration