Merge pull request #101 from 1technophile/patch-1

Fix PORT assignement
This commit is contained in:
hsaturn
2024-03-06 20:48:11 +01:00
committed by GitHub

View File

@@ -1,6 +1,6 @@
#include "TinyMqtt.h" // https://github.com/hsaturn/TinyMqtt #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 const uint8_t RETAIN = 10; // Max retained messages
MqttBroker broker(PORT, RETAIN); MqttBroker broker(PORT, RETAIN);