ArduinoMqttClient icon indicating copy to clipboard operation
ArduinoMqttClient copied to clipboard

ArduinoMqttClient Library for Arduino

Results 35 ArduinoMqttClient issues
Sort by recently updated
recently updated
newest added

as in the title. it connects just fine with the wifi but i get an error code -2 whenn running the wifiecho example on an arduino uno r4. it happens...

type: imperfection
status: waiting for information

``` ~/Development/Arduino/libraries/ArduinoMqttClient/src/MqttClient.cpp: In member function 'int MqttClient::subscribe(const char*, uint8_t)': ~/Development/Arduino/libraries/ArduinoMqttClient/src/MqttClient.cpp:333:43: warning: variable length array 'packetBuffer' is used [-Wvla] uint8_t packetBuffer[5 + remainingLength]; ^ ~/Development/Arduino/libraries/ArduinoMqttClient/src/MqttClient.cpp: In member function 'int MqttClient::unsubscribe(const char*)':...

type: enhancement
topic: code

The library fails to compile on ESP8266 when calling connect() with a port, as in mqttClient.connect(mqttBrokerIp, mqttPort). ``` error: call of overloaded 'connect(IPAddress&, uint16_t&)' is ambiguous ArduinoMqttClient/src/MqttClient.h:82:15: note: candidate: 'virtual...

type: imperfection
topic: code

I didn't find any docs - did I miss some link? I tried to find the documentation of the return values of `beginMessage` and `endMessage` while trying to debug some...