eclipse/paho.mqtt.embedded-c

Question. TLS arduino?

dmet6789 opened this issue · 2 comments

Hello
It is possible to use this library to connect with TLS from arduino yun to a MQTT broker??
if it is possible, do you have a little example or a tutorial or some instructions to make a simple example to publish a message from arduino yun using tls?
thanks in advance for your help
best regards
diego

CIPop commented

The library helps by providing an MQTTPacket data transformation layer between strongly typed C structures and what needs to be sent over the wire.
Using this layer, it would be possible, but you would need to implement all the broker logic. Constraining what your broker supports may be achievable using Arduino.

Thanks @CIPop