Skip to content

Commit 10af521

Browse files
authored
Merge pull request #17 from tomekmalek/master
Release 2.1.1
2 parents d1210f8 + 4473d2e commit 10af521

File tree

7 files changed

+8
-1377
lines changed

7 files changed

+8
-1377
lines changed

.github/workflows/compile-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
runs-on: ubuntu-latest
66
env:
7-
LIBRARIES: WiFi101 WiFiNINA MKRNB MKRGSM ArduinoJson VidorPeripherals PubSubClient "SparkFun VL6180 Sensor"
7+
LIBRARIES: WiFi101 WiFiNINA MKRNB MKRGSM ArduinoJson VidorPeripherals PubSubClient "SparkFun VL6180 Sensor" ArduinoMqttClient
88

99
strategy:
1010
matrix:

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@ This code needs external libraries to run, that you can install using the built-
3030
- [MKRGSM](https://www.arduino.cc/en/Reference/MKRGSM) in order to handle the GSM module on **Arduino MKR GSM 1400**
3131
- [WiFiNINA](https://www.arduino.cc/en/Reference/WiFiNINA) in order to handle WiFi module on **Arduino MKRWIFI 1010** and **Arduino Nano 33 IoT**
3232
- [WiFi101](https://www.arduino.cc/en/Reference/WiFi101) in order to handle WiFi module on **Arduino MKR 1000**
33-
34-
- ~~[ArduinoMqttClient](https://github.com/arduino-libraries/ArduinoMqttClient) that implements a MQTT client for Arduino~~ <sup>*</sup>
35-
36-
<sup>*</sup> currently integrated into this SDK, until https://github.com/arduino-libraries/ArduinoMqttClient/pull/44 fix will be merged
33+
- [ArduinoMqttClient](https://github.com/arduino-libraries/ArduinoMqttClient) that implements an MQTT client for Arduino
3734

3835
#### Library for ESP8266 and ESP32 boards
3936
- [PubSubClient](https://pubsubclient.knolleary.net/) library provides a client for doing simple publish/subscribe messaging with a server that supports MQTT

library.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name=LiveObjectsSDK
2-
version=2.0.0
2+
version=2.1.1
33
author=Orange
4-
maintainer=Marc Delain <[email protected]>, Krzysztof Krzeslak <[email protected]>
4+
maintainer=Marc Delain <[email protected]>, Krzysztof Krzeslak <[email protected]>, Tomasz Malek <[email protected]>
55
sentence=A library that makes connection with Orange LiveObjects platform a breeze.
6-
paragraph=Supports connection with LiveObjects platform in device mode, with the use of GSM or WifI connectivity.
6+
paragraph=Supports connection with LiveObjects platform in device mode, with the use of LTE, GSM or WifI connectivity.
77
category=Communication
88
url=https://github.com/DatavenueLiveObjects/LiveObjects_SDK_for_Arduino
99
architectures=*
1010
includes=LiveObjects.h
11-
depends=WiFiNINA,MKRNB,ArduinoJson,MKRGSM,WiFi101,PubSubClient
11+
depends=WiFiNINA,MKRNB,ArduinoJson,MKRGSM,WiFi101,PubSubClient,ArduinoMqttClient,SparkFun VL6180 Sensor

src/LiveObjectsBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
******************************************************************************/
1313
#define PAYLOAD_DATA_SIZE 1024
1414
#define KEEP_ALIVE_NETWORK 1000
15-
#define SW_REVISION "2.1.0"
15+
#define SW_REVISION "2.1.1"
1616

1717

1818
/******************************************************************************

src/LiveObjectsMKR.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
MKR BOARDS BASE CLASS
1010
******************************************************************************/
1111
#include "LiveObjectsBase.h"
12-
#include "MqttClient.h"
12+
#include <MqttClient.h>
1313
class LiveObjectsMKR : public LiveObjectsBase
1414
{
1515
protected:

0 commit comments

Comments
 (0)