From 4fbfe78e5370ed066e751f50c7cff6919aff5690 Mon Sep 17 00:00:00 2001 From: Florian Date: Mon, 19 Feb 2024 17:14:57 -0600 Subject: [PATCH] Fix PORT assignement --- examples/simple-broker/simple-broker.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple-broker/simple-broker.ino b/examples/simple-broker/simple-broker.ino index 3abf151..46c216f 100644 --- a/examples/simple-broker/simple-broker.ino +++ b/examples/simple-broker/simple-broker.ino @@ -1,6 +1,6 @@ #include "TinyMqtt.h" // https://github.com/hsaturn/TinyMqtt -const uint16_t PORT 1883; +const uint16_t PORT = 1883; const uint8_t RETAIN = 10; // Max retained messages MqttBroker broker(PORT, RETAIN);