OH3 Rule help

Hi all

First of all OH3 is awesome .A big thank you to the awesome developers ,for making more user friendly and accesible to NOOBs like me.

trying to adopt as much OH3 as possible.

I made a rule in new rule tool which is awesome by the way.

Althoug i need to add a 10 sec wait after powering on the Marantz.

Not sure how to add that ?

triggers:

  • id: “1”
    configuration:
    itemName: Sonos_stue_Controller
    state: PLAY
    type: core.ItemStateChangeTrigger
    conditions: []
    actions:
  • inputs: {}
    id: “2”
    configuration:
    itemName: MarantzSR5010MarantzSR5010_Power
    command: ON
    type: core.ItemCommandAction
  • inputs: {}
    id: “3”
    configuration:
    itemName: MarantzSR5010MarantzSR5010_MainZone_Input
    command: CD
    type: core.ItemCommandAction
  • inputs: {}
    id: “4”
    configuration:
    itemName: MarantzSR5010MarantzSR5010_MainZone_Volume
    command: “35”
    type: core.ItemCommandAction

You will need to use a Script Action and either use a Timer or a Thread.sleep(10000).

perfect works now. Very appriciated