Skip to content

Commit

Permalink
v1.0.5-qos0: added info of how to see outputs in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
alexCajas committed Feb 14, 2023
1 parent a3bf71c commit 16bd285
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
12 changes: 12 additions & 0 deletions DevelopNotes.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 7 additions & 0 deletions examples/httpServerAndMqttBroker/httpServerAndMqttBroker.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
7 changes: 7 additions & 0 deletions examples/simpleMqttBroker/simpleMqttBroker.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=EmbeddedMqttBroker
version=1.0.4-qos0
version=1.0.5-qos0
author=Alex Cajas <[email protected]>
maintainer=Alex Cajas <[email protected]>
sentence= Mqtt Broker for embedded systems, developed and tested on an Esp32.
Expand Down

0 comments on commit 16bd285

Please sign in to comment.