arduino-mqtt icon indicating copy to clipboard operation
arduino-mqtt copied to clipboard

MQTT library for Arduino

Results 63 arduino-mqtt issues
Sort by recently updated
recently updated
newest added

Hi, first of all thank you for creating and sharing this library. I'm facing a problem using the arduino-mqtt library in combination with [SSLClient](https://github.com/OPEnSLab-OSU/SSLClient) and WiFi.h WiFiClient to connect to...

Hi I use SSL to connect to a broker. When I publish a QoS1 or QoS2 message, there is a high probability that the MQTT connection will be disconnected. When...

There is another library based on this one (https://github.com/hideakitai/MQTTPubSubClient) that has websockets support, but I prefer using this library so I have ported over the websockets part. https://github.com/PeeJay/arduino-mqtt/tree/websockets At the...

This library does not support MQTT5, Do you have a plan for this and if yes, when will it be ready?

Hi, Thankyou for a really good library! Is it possible to set the MQTT send and receive buffers to PSRAM on the ESP32-Wrover. If it is, could you advise something...

To make it easier to find the reason where and when the mqtt connection fails I added some debug outputs that are default off. Enable e.g. with `-D DEBUG_MQTT` in...

What do you mean with `Beginning with version 2.6, the message payload is sent directly during publishing.`? https://github.com/256dpi/arduino-mqtt/blob/master/README.md#notes There is no version 2.6 ...

File MQTTClient.h: old: MQTTClient(int readSize, int writeBufSize); new: MQTTClient(int read**Buf**Size, int writeBufSize);

I noticed you have it set up if the mqtt client fails when subscribing to a topic (like a topic already subscribed to) it closes the connection to the server....

I'm using an Arduino nano with an ESP8266 for wifi which I have working for other WiFi projects and I'm trying to subscribe to my mqtt broker on Debian 12...