MQTT updating user won't work

Hi,

I’ve added `device_tracker:

  • platform: mqtt
    devices:
    paulus: ‘location/paulus’`

to my configuration.yaml

Now I’m trying to update this via mqtt.

image

But the state doesn’t get updated.

In my known devices:
paulus:
hide_if_away: false
icon:
mac: ****
name: paulus
picture:
track: true
vendor:
gravatar: **

I want to update my user through an external app (ie AutomateIt) but I cannot get it to work…
What is wrong?

You’ve set the topic to “location/paulus” but are publishing to “/location/paulus” (note the leading slash). These are different topics. Try publishing to “location/paulus” instead.

D’oh.

It was so simple.
Thanks!!