From e00f3a9ede1b8e46b480bd68daf48da0bb08acae Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Thu, 4 Sep 2025 01:11:11 +0200 Subject: Initial --- include/config.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 include/config.h (limited to 'include/config.h') diff --git a/include/config.h b/include/config.h new file mode 100644 index 0000000..467e1f7 --- /dev/null +++ b/include/config.h @@ -0,0 +1,21 @@ +#ifndef CONFIG_H +#define CONFIG_H + +#define PUB_TOPIC "device/echo/in" +#define SUB_TOPIC "device/echo/out" +#define PUBLISH_INTERVAL_MS 1000 +#define BUFFER_SIZE 32 + +#ifndef WIFI_SSID +#define WIFI_SSID "UNKNOWN" +#endif + +#ifndef WIFI_PASS +#define WIFI_PASS "UNKNOWN" +#endif + +#ifndef MQTT_URI +#define MQTT_URI "mqtt://0.0.0.0" +#endif + +#endif -- cgit v1.2.3