Prerequisites Tutorial: Setup a schedule

This document is related to: Tutorial: Setup a schedule

Create an action

The actions we have to implement for the Tutorial: Setup a schedule are: 

  • turn on heating

  • turn off heating

We will use the Item.Write XCommand to write a boolean value on the Server Item NETx\VAR\Boolean\Item001 which will switch the heating system.

Step by step

  1. Open the Scheduler app.

  2. Select the folder where to create the action and click Add > Action from the menu.

  3. In the form enter the Name and the Description of the action. 

  4. In the form click the Add button to add some logic what to do in this action. Do not mix the Add button from the menu and the Add button in the form! 
    Repeat this step to add additional actions.

  5. The XCommand sections appears


     

  6. Expand the XCommand list and select Item > Write

  7. In the XCommand form browse the Item Tree to set the Output to NETx>VAR>Boolean>Item001.

  8. Set the Value, written to the Server Item, to ON. 




  9. Save the action

  10. To create the "turn off" action we will copy and paste the action created right now.
    Select the TurnOnHeatingAction in the project tree on the left hand side and duplicate it (use copy and paste from the menu).

  11. The new action will get the name "TurnOnHeatingAction (1)" - so we have to change its Name, the Description. In the action select the Value = OFF to be written to the Server Item.

  12. Save the action

Tutorial video

Create a condition

The condition we have to implement is to hold the temperature of minimum 22 degrees. We imagine to read the current room temperature from the Server Item NETx\VAR\Numeric\Item001.

Step by step

  1. Open the Scheduler app.

  2. Select the folder where to create the condition and click Add > Condition from the menu.

  3. In the form enter the Name and the Description of the condition


     

  4. Click the Add button to add some logic what to do in this action. Do not mix the Add button from the menu and the Add button in the form! 

  5. Repeat this step to add additional actions.

  6. The XCommand sections appears

     

  7. Expand the XCommand list and select Comparison > LessOrEqual

  8. In the XCommand form browse the Item Tree to set the Input to NETx>VAR>Numeric>Item001.

  9. Set the Value to 22. This value will be compared to the selected Server Item.

  10. Save the condition

Tutorial video