async-mqtt-client icon indicating copy to clipboard operation
async-mqtt-client copied to clipboard

📶 An Arduino for ESP8266 asynchronous MQTT client implementation

Results 51 async-mqtt-client issues
Sort by recently updated
recently updated
newest added

Add helpers to deal with large payloads or non-zero-terminated strings https://github.com/marvinroger/async-mqtt-client/issues/234

This strings should be stored somewhere, let it be inside the library, because in that case we can use temp variables for them outside the library. Usecase: ```cpp AsyncMqttClient _mqtt;...

discussion

Today while testing the "FullyFeatured-ESP8266.ino" example, I made a mistake and instead of using port 1883, I set 1880 where my node-red is running. The program crashes: ``` Connecting to...

From time to time there is a situation in which in the WiFi STA mode there is a disconnection from the broker (reconnection), and despite the fact that WiFi.status ()...

> You are correct. If you're adventurous, you could try https://github.com/tve/async-mqtt-client > See also [me-no-dev/AsyncTCP#43](https://github.com/me-no-dev/AsyncTCP/pull/43) Is it possible to merge that fork with this repository? I know this is an...

Been using this library for a while and absolutely love it. The async nature is second to none above similar libraries. However I find myself writing boiler plate every time...

@marvinroger @allanbartley Tried Both variants V2 Lower memory and V2 Higher Bandwidth. But get following exception when connecting to MQTT. ``` Exception (29): epc1=0x40210242 epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000004 depc=0x00000000 ``` ```...

I'm getting the following stack-trace when connecting to an SSL enabled mosquitto broker. Could this be related to my mosquitto configuration? I didn't modify anything other than the necessary vaeriables...

Although the sketch compiles OK, you get these warnings with Arduino 2.0.4 and board Node32s from "esp32 by Espressif Systems" 2.0.7 - `c:\Users\Hamish\Documents\Arduino\libraries\async-mqtt-client-master\src\AsyncMqttClient.cpp: In constructor 'AsyncMqttClient::AsyncMqttClient()': c:\Users\Hamish\Documents\Arduino\libraries\async-mqtt-client-master\src\AsyncMqttClient.cpp:44:19: warning: missing initializer...