I have a client that needs our app to communicate to their field units via MQTT. Has anyone dealt with MQTT from Clarion before?
Thanks
Matthys
I have a client that needs our app to communicate to their field units via MQTT. Has anyone dealt with MQTT from Clarion before?
Thanks
Matthys
libcurl supports mqtt protocol.
Thanks Mike, I didn’t know that libcurl supports it. I’ll look at your libcurl repo on GitHub to see how it can be done.
A plain “GET” subscribes to the topic and prints all published messages.
Doing a “POST” publishes the post data to the topic and exits.
Example subscribe:
curl mqtt://host.home/bedroom/temp
Example publish:
curl -d 75 mqtt://host.home/bedroom/dimmer
It outputs two bytes topic length (MSB | LSB), the topic followed by the
payload.
Remaining limitations:
Hi Mike,
Can a call to LibCurl work inside a IDLE() hook procedure ?
I never tried that, I’m sure you are able to check it yourself.
I’ve used the Mosquitto libraries in C6