Wait between rule actions

Hi,

I have this Rule:

actions:
  - inputs: {}
    id: "5"
    configuration:
      command: ON
      itemName: Hal_Vermogen
    type: core.ItemCommandAction
  - inputs: {}
    id: "1"
    configuration:
      command: OFF
      itemName: Eetkamer_Vermogen
    type: core.ItemCommandAction

Now I want to add some time between the execution of these 2 rules (60 secs).
I guess this should be possible?

Yes but you’ll need to write code and can’t just use the Item Actions. If you create a Script Action and choose Blockly, you can send the command, use a Timer (preferred) to send the second command in 60 seconds or use a “wait for” block between the two commands.