You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**MQTT library for Arduino based on the Eclipse Paho projects**
6
6
7
7
This library bundles the [Embedded MQTT C/C++ Client](https://eclipse.org/paho/clients/c/embedded/) library of the Eclipse Paho project and adds a thin wrapper to get an Arduino like API. Additionally there is an drop-in alternative for the Arduino Yùn that uses a python based client on the linux processor and a binary interface to lower program space usage on the Arduino side.
8
8
9
9
The first release of the library only supports QoS0 and the basic features to get going. In the next releases more of the features will be available. Please create an issue if you need a specific functionality.
10
10
11
-
[Download version 1.10.1 of the library.](https://github.com/256dpi/arduino-mqtt/releases/download/v1.10.1/mqtt.zip)
11
+
[Download version 1.10.1.1 of the library.](https://github.com/unforgiven-development/arduino-mqtt/releases/download/v1.10.1.1/mqtt.zip)
12
12
13
13
*Or even better use the Library Manager in the Arduino IDE.*
14
14
@@ -20,18 +20,18 @@ All of the files in the library following the naming format __MQTT...__ been ren
20
20
21
21
The following examples show how you can use the library with various Arduino compatible hardware:
Other shields and boards should work if they also provide a [Client](https://www.arduino.cc/en/Reference/ClientConstructor) based network implementation.
31
31
32
32
## Caveats
33
33
34
-
- The maximum size for packets being published and received is set by default to 128 bytes. To change that value, you need to download the library manually and change the value in the following file: https://github.com/256dpi/arduino-mqtt/blob/master/src/MQTTClient.h#L5.
34
+
- The maximum size for packets being published and received is set by default to 384 bytes. To change that value, you need to download the library manually and change the value in the following file: https://github.com/unforgiven-development/arduino-mqtt/blob/master/src/MQTTClient.h#L5.
35
35
36
36
- On the ESP8266 it has been reported that an additional `delay(10);` after `client.loop();` fixes many stability issues with WiFi connections.
0 commit comments