# Send a massage over MQTT

**URL:** https://community.homey.app/t/send-a-massage-over-mqtt/92374
**Category:** Questions & Help
**Tags:** mqtt
**Created:** [October 20, 2023, 8:25pm UTC](https://community.homey.app/t/send-a-massage-over-mqtt/92374 "2023-10-20T20:25:02Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Johan\_Gustafsson](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/johan_gustafsson/32/16719_2.png) [@Johan\_Gustafsson](https://community.homey.app/u/Johan_Gustafsson)
#### Post date: [October 20, 2023, 8:25pm UTC](https://community.homey.app/t/send-a-massage-over-mqtt/92374/1 "2023-10-20T20:25:02Z")

</div>

Hi  
I don´t know where to start looking for answer. Maybe some one can point me in the right direction.

I´m trying to start a playlist on my Falcon F16V4 controller.  
I have this information

**MQTT Settings**

- MQTT events will be published to “falcon/player/FPP/” with playlist events being in the “playlist” subtopic.

- **CA file** is the full path to the signer certificate. Only needed if using mqtts server that is self signed.

- **Publish Frequence** should be zero (disabled) or the number of seconds between periodic mqtt publish events

- FPP will respond to certain events:

|Topic|  
| — | — |  
falcon/player/FPP/set/playlist/${PLAYLISTNAME}/start

|Action|  
| — | — |  
Starts the playlist (optional payload can be index of item to start with)

This is my latest try. Anyone know howto split into message and topic?  
Do I need to add some characters

 ![mqtt](https://us1.discourse-cdn.com/flex025/uploads/athom/original/3X/3/1/3159cc846d5f5b85d7ea68928772d18c1794b145.png)

---

<div class="post-metadata">

### Author: ![Peter\_Kawa](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/peter_kawa/32/173848_2.png) [@Peter\_Kawa](https://community.homey.app/u/Peter_Kawa)
#### Post date: [October 20, 2023, 11:17pm UTC](https://community.homey.app/t/send-a-massage-over-mqtt/92374/2 "2023-10-20T23:17:02Z")

</div>

The message usually is the last bit of the topic  
send to topic:  
falcon/player/FPP/set/playlist/Halloween

message:  
start

Not sure if they want the playlist name to be in the `${ }` part, just try the two different playlistname formats  
 ![Screenshot from 2023-10-21 01-14-49](https://us1.discourse-cdn.com/flex025/uploads/athom/original/3X/9/6/9665cdc5b97703291e60e240970f6406f0b6c090.png)

---

<div class="post-metadata">

### Author: ![Johan\_Gustafsson](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/johan_gustafsson/32/16719_2.png) [@Johan\_Gustafsson](https://community.homey.app/u/Johan_Gustafsson)
#### Post date: [October 21, 2023, 7:08pm UTC](https://community.homey.app/t/send-a-massage-over-mqtt/92374/3 "2023-10-21T19:08:44Z")

</div>

Thanks for some good ideas, but sadly they did not work.  
After searching some more I find an example from HA.

If someone else is running into a similar problem, here is my solution

Message: HALLOWEEN (Name of my playlist)  
Topic: falcon/player/FPP/playlist/name/set

This starts the playlist and plays it onetime

---

<div class="post-metadata">

### Author: ![Peter\_Kawa](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/peter_kawa/32/173848_2.png) [@Peter\_Kawa](https://community.homey.app/u/Peter_Kawa)
#### Post date: [October 21, 2023, 7:48pm UTC](https://community.homey.app/t/send-a-massage-over-mqtt/92374/4 "2023-10-21T19:48:20Z")

</div>

Good to hear.  
Still it’s odd the topic is a shuffled version from the example by Falcon 😏

> [@Johan\_Gustafsson](#):
>
> falcon/player/FPP/set/playlist/${PLAYLISTNAME}/start
