Skip to content

Commit 16bd285

Browse files
committed
v1.0.5-qos0: added info of how to see outputs in examples
1 parent a3bf71c commit 16bd285

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

DevelopNotes.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Notes of develop procces
22

3+
## v1.0.5-qoss0
4+
5+
### doing
6+
7+
8+
### done
9+
10+
### 14/2/2022
11+
* Added info of how to see outputs of broker activity in examples, version level up to 1.0.5, to arduino manager.
12+
13+
---
14+
315
## v1.0.4 - qos 0
416

517
### doing

examples/httpServerAndMqttBroker/httpServerAndMqttBroker.ino

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ WiFiClient httpClient;
2828

2929
void setup(){
3030

31+
/**
32+
* @brief To see outputs of broker activity
33+
* (message to publish, new client's id etc...),
34+
* set your core debug level higher to NONE (I recommend INFO level).
35+
* More info: @link https://github.com/alexCajas/EmbeddedMqttBroker @endlink
36+
*/
37+
3138
Serial.begin(115200);
3239
// Connect to WiFi network
3340
Serial.println();

examples/simpleMqttBroker/simpleMqttBroker.ino

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ uint16_t mqttPort = 1883;
1717
MqttBroker broker(mqttPort);
1818

1919
void setup(){
20+
21+
/**
22+
* @brief To see outputs of broker activity
23+
* (message to publish, new client's id etc...),
24+
* set your core debug level higher to NONE (I recommend INFO level).
25+
* More info: @link https://github.com/alexCajas/EmbeddedMqttBroker @endlink
26+
*/
2027

2128
Serial.begin(115200);
2229
// Connect to WiFi network

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EmbeddedMqttBroker
2-
version=1.0.4-qos0
2+
version=1.0.5-qos0
33
author=Alex Cajas <alexcajas505@gmail.com>
44
maintainer=Alex Cajas <alexcajas505@gmail.com>
55
sentence= Mqtt Broker for embedded systems, developed and tested on an Esp32.

0 commit comments

Comments
 (0)