Fix PORT assignement

This commit is contained in:
Florian
2024-02-19 17:14:57 -06:00
committed by GitHub
parent 6f93c09e2f
commit 4fbfe78e53

View File

@@ -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);