#Getting Malformed error with working manual automation, but not blueprint

1 messages · Page 1 of 1 (latest)

cedar lark
#

Hi there, I have a problem with my blueprint for a Comet Wifi radiator. I want to set two times: one for start and one for end to set the desired temperature.
In my customize.yaml I have added a attribute "mac_address" for the entity and if I create the automation manually then it work, but when I want to convert it to an blueprint I get the error: Message malformed: extra keys not allowed @ data['action'][0]['choose'][0]['conditions'][0]['sequence']

Can someone give me a hint where I have my issue?

graceful brook
#

Your indenting is broken, badly broken

#
      - conditions:
          - condition: trigger
            id:
              - start_temp
            sequence:
``` `sequence` should align with `conditions`
```yaml
      - conditions:
          - condition: trigger
            id:
              - start_temp
        sequence:
cedar lark
#

Oh 😅 I check it when I'm coming back at home later. Thanks for youre answer!