My first Automation

OK, this is an Automation to turn my espresso machine on at 4:30 AM:

id: '1657858803347'
alias: Turn on espresso machine
description: ''
trigger:
  - platform: time
    at: '04:30:00'
condition: []
action:
  - type: turn_on
    device_id: 4797409897fc316a1c9481e113e7da9a
    entity_id: switch.kitchen_smart_plug_on_off
    domain: switch
mode: single

This one is to turn it off at 10:30 AM:

id: '1657859321611'
alias: Turn off espresso machine
description: ''
trigger:
  - platform: time
    at: '10:30:00'
condition: []
action:
  - type: turn_off
    device_id: 4797409897fc316a1c9481e113e7da9a
    entity_id: switch.kitchen_smart_plug_on_off
    domain: switch
mode: single

Think it’ll work? Guess I’ll find out tomorrow morning.

Looks ok to me and a suitable first automation :wink:.

Just what I wanted to hear and the best thing is that it worked. The espresso machine was warm and waiting to go this morning.

Thanks

1 Like