From 16bd2854610e1fef1ecc6fde8b2a1c9f98778256 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 14 Feb 2023 13:15:01 +0100 Subject: [PATCH] v1.0.5-qos0: added info of how to see outputs in examples --- DevelopNotes.md | 12 ++++++++++++ .../httpServerAndMqttBroker.ino | 7 +++++++ examples/simpleMqttBroker/simpleMqttBroker.ino | 7 +++++++ library.properties | 2 +- 4 files changed, 27 insertions(+), 1 deletion(-) diff --git a/DevelopNotes.md b/DevelopNotes.md index 593bb90..c9220b9 100644 --- a/DevelopNotes.md +++ b/DevelopNotes.md @@ -1,5 +1,17 @@ # Notes of develop procces +## v1.0.5-qoss0 + +### doing + + +### done + +### 14/2/2022 +* Added info of how to see outputs of broker activity in examples, version level up to 1.0.5, to arduino manager. + +--- + ## v1.0.4 - qos 0 ### doing diff --git a/examples/httpServerAndMqttBroker/httpServerAndMqttBroker.ino b/examples/httpServerAndMqttBroker/httpServerAndMqttBroker.ino index 56126bf..d82455f 100644 --- a/examples/httpServerAndMqttBroker/httpServerAndMqttBroker.ino +++ b/examples/httpServerAndMqttBroker/httpServerAndMqttBroker.ino @@ -28,6 +28,13 @@ WiFiClient httpClient; void setup(){ + /** + * @brief To see outputs of broker activity + * (message to publish, new client's id etc...), + * set your core debug level higher to NONE (I recommend INFO level). + * More info: @link https://github.com/alexCajas/EmbeddedMqttBroker @endlink + */ + Serial.begin(115200); // Connect to WiFi network Serial.println(); diff --git a/examples/simpleMqttBroker/simpleMqttBroker.ino b/examples/simpleMqttBroker/simpleMqttBroker.ino index 0573e08..45fafe8 100644 --- a/examples/simpleMqttBroker/simpleMqttBroker.ino +++ b/examples/simpleMqttBroker/simpleMqttBroker.ino @@ -17,6 +17,13 @@ uint16_t mqttPort = 1883; MqttBroker broker(mqttPort); void setup(){ + + /** + * @brief To see outputs of broker activity + * (message to publish, new client's id etc...), + * set your core debug level higher to NONE (I recommend INFO level). + * More info: @link https://github.com/alexCajas/EmbeddedMqttBroker @endlink + */ Serial.begin(115200); // Connect to WiFi network diff --git a/library.properties b/library.properties index 5b5d499..af5723c 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=EmbeddedMqttBroker -version=1.0.4-qos0 +version=1.0.5-qos0 author=Alex Cajas maintainer=Alex Cajas sentence= Mqtt Broker for embedded systems, developed and tested on an Esp32.