HA doesn't respond

Hi All,

I am sure I am doing something silly here but I keep getting this connection error when trying to use a couple of services that are the same:

eg:

# Presence Detector Setup device_tracker: platform: owntracks max_gps_accuracy: 200 platform: locative

Here I am trying to use owntracks and locative at the same time but as soon as I add:

platform: locative

part it doesn’t start HA if I delete that line it starts back up again. I am sure it’s just the way its coded but I fairly new to this stuff so apologies if it’s something silly.

Is this the right way to group different services?

Thanks
Mike

device_tracker:
- platform: owntracks
  max_gps_accuracy: 200
- platform: locative

Try that. Note how each platform is a YAML list item.

1 Like

@happyleaves Sweet that seems to have done it. Im sure I tried that though but must of been something wrong haha cheers buddy

It may just be formatting of your post but if not it is because the yaml file didn’t understand the formatting of your component. the detail pieces have to be offset under the parent item like happleaves shows.

1 Like