From 1ba21da6cbc63c0c549fb92731e25bedc482eb51 Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Thu, 4 Sep 2025 22:25:39 +0200 Subject: Unify the directory, add new analysis methods, unify the code style Signed-off-by: Filip Wandzio --- firmware/include/config.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 firmware/include/config.h (limited to 'firmware/include/config.h') diff --git a/firmware/include/config.h b/firmware/include/config.h new file mode 100644 index 0000000..467e1f7 --- /dev/null +++ b/firmware/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