Skip to content
English
  • There are no suggestions because the search field is empty.

Control of a heating zone with more than one actuator

When a single heating zone includes more than one actuator on the manifold, you can still control all of them using a single virtual Thermostat object.

Simultaneous control of multiple output objects can be configured as follows:

  1. Create a virtual Thermostat object setting the temperature sensor located in the given heating zone as the temperature source. Assign one actuator from the selected heating zone as the output.

  2. After creating the Thermostat, open its Events tab.
  3. Assign the SwitchOn method of the remaining actuators in the group to the OnOutOn event.
  4. Assign the SwitchOff method of the remaining actuators in the group to the OnOutOff event.



  5. Upload the configuration to the CLU.
  6. If the heating zone contains more than five actuators, create a script and assign it to the OnOutOn event instead of adding individual method calls.




    CLU->x201000597_DOUT_02->SwitchOn(0)
    CLU->x201000597_DOUT_03->SwitchOn(0)
    CLU->x201000597_DOUT_04->SwitchOn(0)
    CLU->x201000921_DOUT_01->SwitchOn(0)
    CLU->x201000921_DOUT_02->SwitchOn(0)
    CLU->x201000921_DOUT_03->SwitchOn(0)

  7. Create a corresponding script for the OnOutOff event.


    CLU->x201000597_DOUT_02->SwitchOff(0)
    CLU->x201000597_DOUT_03->SwitchOff(0)
    CLU->x201000597_DOUT_04->SwitchOff(0)
    CLU->x201000921_DOUT_01->SwitchOff(0)
    CLU->x201000921_DOUT_02->SwitchOff(0)
    CLU->x201000921_DOUT_03->SwitchOff(0)

  8.  Assign scripts to the appropriate events and upload the configuration to the CLU.