Skip to content

Commit 1c367a9

Browse files
committed
Bump version to 1.10.1.1
1 parent 03228d5 commit 1c367a9

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# arduino-mqtt
22

3-
[![Build Status](https://travis-ci.org/256dpi/arduino-mqtt.svg?branch=master)](https://travis-ci.org/256dpi/arduino-mqtt)
3+
[![Build Status](https://travis-ci.org/unforgiven-development/arduino-mqtt.svg?branch=master)](https://travis-ci.org/unforgiven-development/arduino-mqtt)
44

55
**MQTT library for Arduino based on the Eclipse Paho projects**
66

77
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.
88

99
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.
1010

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)
1212

1313
*Or even better use the Library Manager in the Arduino IDE.*
1414

@@ -20,18 +20,18 @@ All of the files in the library following the naming format __MQTT...__ been ren
2020

2121
The following examples show how you can use the library with various Arduino compatible hardware:
2222

23-
- [Arduino Yun & Yun-Shield (MQTTClient)](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoYun_MQTTClient/ArduinoYun_MQTTClient.ino)
24-
- [Arduino Yun & Yun-Shield (YunMQTTClient)](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoYun_YunMQTTClient/ArduinoYun_YunMQTTClient.ino) ([SSL](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoYun_YunMQTTClient_SSL/ArduinoYun_YunMQTTClient_SSL.ino))
25-
- [Arduino Ethernet Shield](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoEthernetShield/ArduinoEthernetShield.ino)
26-
- [Arduino WiFi Shield](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoWiFiShield/ArduinoWiFiShield.ino)
27-
- [Adafruit HUZZAH ESP8266](https://github.com/256dpi/arduino-mqtt/blob/master/examples/AdafruitHuzzahESP8266/AdafruitHuzzahESP8266.ino) ([SSL](https://github.com/256dpi/arduino-mqtt/blob/master/examples/AdafruitHuzzahESP8266_SSL/AdafruitHuzzahESP8266_SSL.ino))
28-
- [Arduino/Genuino WiFi101 Shield](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoWiFi101/ArduinoWiFi101.ino) ([SSL](https://github.com/256dpi/arduino-mqtt/blob/master/examples/ArduinoWiFi101_SSL/ArduinoWiFi101_SSL.ino))
23+
- [Arduino Yun & Yun-Shield (MQTTClient)](https://github.com/unforgiven-development/arduino-mqtt/blob/master/examples/ArduinoYun_MQTTClient/ArduinoYun_MQTTClient.ino)
24+
- [Arduino Yun & Yun-Shield (YunMQTTClient)](https://github.com/unforgiven-development/arduino-mqtt/blob/master/examples/ArduinoYun_YunMQTTClient/ArduinoYun_YunMQTTClient.ino) ([SSL](https://github.com/unforgiven-development/arduino-mqtt/blob/master/examples/ArduinoYun_YunMQTTClient_SSL/ArduinoYun_YunMQTTClient_SSL.ino))
25+
- [Arduino Ethernet Shield](https://github.com/unforgiven-development/arduino-mqtt/blob/master/examples/ArduinoEthernetShield/ArduinoEthernetShield.ino)
26+
- [Arduino WiFi Shield](https://github.com/unforgiven-development/arduino-mqtt/blob/master/examples/ArduinoWiFiShield/ArduinoWiFiShield.ino)
27+
- [Adafruit HUZZAH ESP8266](https://github.com/unforgiven-development/arduino-mqtt/blob/master/examples/AdafruitHuzzahESP8266/AdafruitHuzzahESP8266.ino) ([SSL](https://github.com/unforgiven-development/arduino-mqtt/blob/master/examples/AdafruitHuzzahESP8266_SSL/AdafruitHuzzahESP8266_SSL.ino))
28+
- [Arduino/Genuino WiFi101 Shield](https://github.com/unforgiven-development/arduino-mqtt/blob/master/examples/ArduinoWiFi101/ArduinoWiFi101.ino) ([SSL](https://github.com/unforgiven-development/arduino-mqtt/blob/master/examples/ArduinoWiFi101_SSL/ArduinoWiFi101_SSL.ino))
2929

3030
Other shields and boards should work if they also provide a [Client](https://www.arduino.cc/en/Reference/ClientConstructor) based network implementation.
3131

3232
## Caveats
3333

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.
3535

3636
- On the ESP8266 it has been reported that an additional `delay(10);` after `client.loop();` fixes many stability issues with WiFi connections.
3737

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=PahoMQTT
2-
version=1.10.1
2+
version=1.10.1.1
33
author=Joel Gaehwiler <joel.gaehwiler@gmail.com>
44
maintainer=Gerad Munsch <gmunsch@unforgivendevelopment.com>
55
sentence=MQTT library for Arduino based on the Eclipse Paho projects (modified to resolve library naming conflicts)

src/YunPahoMQTTClient.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ boolean YunMQTTClient::updateBridge() {
2121
Process p;
2222

2323
int r1 = p.runShellCommand(F("mkdir -p /usr/arduino-mqtt"));
24-
int r2 = p.runShellCommand(F("wget -N https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.10.1/yun/mqtt.py --no-check-certificate -P /usr/arduino-mqtt"));
25-
int r3 = p.runShellCommand(F("wget -N https://raw.githubusercontent.com/256dpi/arduino-mqtt/v1.10.1/yun/bridge.py --no-check-certificate -P /usr/arduino-mqtt"));
24+
int r2 = p.runShellCommand(F("wget -N https://raw.githubusercontent.com/unforgiven-development/arduino-mqtt/v1.10.1.1/yun/mqtt.py --no-check-certificate -P /usr/arduino-mqtt"));
25+
int r3 = p.runShellCommand(F("wget -N https://raw.githubusercontent.com/unforgiven-development/arduino-mqtt/v1.10.1.1/yun/bridge.py --no-check-certificate -P /usr/arduino-mqtt"));
2626

2727
return r1 == 0 && r2 == 0 && r3 == 0;
2828
}

0 commit comments

Comments
 (0)