From 138ce973f29bf8339d05bf6146947fb2a1f15e3e Mon Sep 17 00:00:00 2001 From: hsaturn Date: Fri, 2 Apr 2021 18:48:37 +0200 Subject: [PATCH] Typos in libraries --- examples/tinymqtt-test/tinymqtt-test.ino | 1 + library.json | 4 ++-- library.properties | 5 +++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/tinymqtt-test/tinymqtt-test.ino b/examples/tinymqtt-test/tinymqtt-test.ino index 9d112e9..b2f5b23 100644 --- a/examples/tinymqtt-test/tinymqtt-test.ino +++ b/examples/tinymqtt-test/tinymqtt-test.ino @@ -40,6 +40,7 @@ std::map brokers; void setup() { + WiFi.persistent(false); // https://github.com/esp8266/Arduino/issues/1054 Serial.begin(115200); delay(500); Serial << endl << endl << endl diff --git a/library.json b/library.json index a2cc462..b44cc11 100644 --- a/library.json +++ b/library.json @@ -1,12 +1,12 @@ { "name": "TinyMqtt", "keywords": "ethernet, mqtt, m2m, iot", - "description": "MQTT is a lightweight messaging protocol ideal for small devices. This library allows you to send and receive MQTT messages. It does support MQTT 3.1.1 without any QOS.", + "description": "MQTT is a lightweight messaging protocol ideal for small devices. This library allows to send and receive MQTT messages. It does support MQTT 3.1.1 without QOS=0.", "repository": { "type": "git", "url": "https://github.com/hsaturn/TinyMqtt.git" }, - "version": "0.7.1", + "version": "0.7.2", "exclude": "", "examples": "examples/*/*.ino", "frameworks": "arduino", diff --git a/library.properties b/library.properties index 1a093b4..d2e0586 100644 --- a/library.properties +++ b/library.properties @@ -1,10 +1,11 @@ name=TinyMqtt -version=0.7.1 +version=0.7.2 author=Francois BIOT, HSaturn, maintainer=Francois BIOT, HSaturn, sentence=A tiny broker and client library for MQTT messaging. -paragraph=MQTT is a lightweight messaging protocol ideal for small devices. This library allows you to send and receive MQTT messages and to jhost a broker in your ESP. It does support MQTT 3.1.1 without any QOS. +paragraph=MQTT is a lightweight messaging protocol ideal for small devices. This library allows to send and receive MQTT messages and to host a broker in your ESP. It does support MQTT 3.1.1 without QoS=0. category=Communication url=https://github.com/hsaturn/TinyMqtt architectures=* includes=TinyMqtt.h +depends=