alexCajas / EmbeddedMqttBroker

This is a Mqtt broker for embedded devices, developed in C++, FreeRTOS to use advanced multitasking capabilities, and arduino core. Tested in an Esp32 and esp8266.
https://github.com/alexCajas/EmbeddedMqttBroker
MIT License
71 stars 14 forks source link

MQTT client on same esp32 (connect via loop device) #12

Closed derflaryam closed 1 year ago

derflaryam commented 1 year ago

Is it possible to have a some mqtt client tasks running on the same ESP32 ?

alexCajas commented 1 year ago

Hi!, this library doesn't implement a functional mqtt client (It will be able in future versions), only use an abstracction to keep in the broker information of a real mqtt client. I usually use https://github.com/knolleary/pubsubclient, to use a broker and a client in the same sketch.