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

While conducting tests with the AsyncMqttClient library, I've discovered that sending messages larger than 5500 bytes (the exact limit is uncertain, but it's approximately around that value) is not feasible....

When using debug log in the project, AsyncMqttClient.cpp flood the serial with an huge amount of logs. How can I stop it to log but keeping the debug mode active...

Hello is there ana working sample available for an ESP32 with activated SSL?

I'm using AsyncMqttClient on ESP32 + Ardion-ESP. I found, that a lot of messages are lost. I would try to describe a problem: 1. After establishing the connection, I subscribe...

Hello. I can't seem to find the token authentication method? Is this supported? I am using Beebotte and this is what it says about authentication: https://beebotte.com/docs/mqtt

Hey, i always get these errors, when i try to compile my code with using this async-mqtt-client-library: `.\libraries\async_mqtt_client\AsyncMqttClient.cpp.o:(.literal._ZN15AsyncMqttClient12_handleQueueEv+0x0): undefined reference to `AsyncMqttClientInternals::OutPacket::packetType() const' .\libraries\async_mqtt_client\AsyncMqttClient.cpp.o:(.literal._ZN15AsyncMqttClient12_handleQueueEv+0x4): undefined reference to `AsyncMqttClientInternals::OutPacket::released() const' .\libraries\async_mqtt_client\AsyncMqttClient.cpp.o:(.literal._ZN15AsyncMqttClient9_onPubRecEt+0x0):...

after setting client ID, ESP32 tries to connect as anonymous user. here is the code where I set my connection credentials. mqttClient.setServer(const_cast (configurations.brokerAddress.c_str()), configurations.brokerPort); mqttClient.setCredentials(const_cast(configurations.brokerUser.c_str()), const_cast(configurations.brokerPassword.c_str())); String clientID = WiFi.macAddress();...

Hi, i use PlatformIO with: platform = espressif32 board = esp32dev My MQTT server is Mosquitto based With framework-arduinoespressif32 @ 2.17 all work fine. The arduino framework is now updated...

Hello, I am facing the following building error with [FullyFeatured-ESP32.ino](https://github.com/marvinroger/async-mqtt-client/blob/develop/examples/FullyFeatured-ESP32/FullyFeatured-ESP32.ino). I think it's linked to events changes with [arduino-esp32-3.0](https://github.com/espressif/arduino-esp32/releases/tag/3.0.0) branch. ``` D:\Dev\Arduino\Elecrow\CrowPanel_7.0\AsyncMqttClientTest\AsyncMqttClientTest\AsyncMqttClientTest.ino: In function 'void WiFiEvent(arduino_event_id_t)': D:\Dev\Arduino\Elecrow\CrowPanel_7.0\AsyncMqttClientTest\AsyncMqttClientTest\AsyncMqttClientTest.ino:36:10: error: 'SYSTEM_EVENT_STA_GOT_IP' was...