ESP32MQTTClient icon indicating copy to clipboard operation
ESP32MQTTClient copied to clipboard

A thread-safe MQTT client for Arduino ESP32xx, based on ESP-IDF MQTT component. | Need help for adapting the latest mqtt component.

Results 9 ESP32MQTTClient issues
Sort by recently updated
recently updated
newest added

Currently, the ESP32MQTTClient library only provides a publish method that accepts String type for both topic and payload. While this is suitable for text-based messages, it poses a problem when...

When trying to compile it for an ESP32-WROOM-32, I get following error: #error "This library only supports boards with an AVR, SAM, SAMD, NRF52 or STM32F4 processor." I thought this...

I'm trying to connect to MQTT and receive messages. PubSubClient is broken and dead , Espressif's `mqtt_client` example doesn't even compile, and `MQTTClient` simply doesn't work; this is next on...

disablePersistence() is currently commented as *enabling* a persistent connection, which it does not. Fix the comment.

without initializing these, we assign garbage to the internal `mqtt_client` struct's `lastwill` struct unless `EnableLastWillMessage()` is called. this usually manifests as an IllegalInstruction or ProhibitedLoad exception. probably we ought be...

Hi, Thanks for publishing this library! I'm using it now instead of ESPWiFiMqttWrapper. I've noticed a couple of things - - A `while (WiFi.status() != WL_CONNECTED) {` loop is needed...

Searches suggest that the library is built primarily for ESP-IDF's MQTT client encapsulation, which is agnostic to the network interface—whether it's Wi-Fi or Ethernet. So the library should be able...

Hi I was getting a memmove exception and i believe you were creating a buffer overrun by doing this payload[strTerminationPos] = '\0'; payload[length] = '\0'; and payloadStr=String(payload); was creating a...

Hi - Please can you provide a Publish Only Example. Many thanks