arduino-mqtt
arduino-mqtt copied to clipboard
MQTT library for Arduino
The ESP32DevelopmentBoardSecure example sketch for the ESP32 fails to receive the first message after connect and sits in an endless re-connecting loop. Inserting the `getLastError()` call before the re-connect shows...
There have been various requests for adding a chunked reading and writing API to process messages that are larger than the configured buffer size. This issue is to track the...
It is possible an example using Adafruit FONA 808? Or SIM808? I already have a MKR1400 working with this library but i need tho change the modem by SIM808.
Currently there is only `onMessage(messageReceived)` callback. It would be nice that user can make routed subscribes that way: `client.subscribe("/hello", myHelloHandler);` and that mqtt client lib will automatically route all `/hello`...
Hi .. I would like to know if you have any plan to modify this repo for handling ethernet shield ENVj2860 ? Thanks a lot
Just wanted to inform that i tested arduino-mqtt on RP2040 / Raspberry Pi Pico W and with the earlephilhower/arduino-pico Core [Here](https://github.com/earlephilhower/arduino-pico) it works out of the box no issues! Would...
``` // get available bytes on the network auto available = (size_t)this->netClient->available(); // yield if data is available if (available > 0) { this->_lastError = lwmqtt_yield(&this->client, available, this->timeout); if (this->_lastError...
Hello! I have a problem that I have been trying to solve for a long time. An ESP feather board (ESP8266) reconnects to MQTT at completely random intervals. Looking at...
Ref https://github.com/256dpi/arduino-mqtt/issues/147#issuecomment-1787447115 As suggested, I've made this into an Arduino project. Platformio users can go to my original repo instead. Tested with Arduino 1.8.19.
I use CBU module with platformio.ini configuration [env:cbu] platform = libretiny board = cbu framework = arduino upload_speed = 921600 monitor_speed = 115200 lib_compat_mode = off lib_deps = 256dpi/MQTT@^2.5.1 I...