aboutsummaryrefslogtreecommitdiffstats
path: root/include/config.h
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2025-09-04 22:25:39 +0200
committerFilip Wandzio <contact@philw.dev>2025-09-04 22:25:39 +0200
commit1ba21da6cbc63c0c549fb92731e25bedc482eb51 (patch)
treeddf6fc2259a2495f8de336a07873cc3c6796785e /include/config.h
parente00f3a9ede1b8e46b480bd68daf48da0bb08acae (diff)
downloade1-1ba21da6cbc63c0c549fb92731e25bedc482eb51.tar.gz
e1-1ba21da6cbc63c0c549fb92731e25bedc482eb51.zip
Unify the directory, add new analysis methods, unify the code style
Signed-off-by: Filip Wandzio <contact@philw.dev>
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/config.h b/include/config.h
deleted file mode 100644
index 467e1f7..0000000
--- a/include/config.h
+++ /dev/null
@@ -1,21 +0,0 @@
1#ifndef CONFIG_H
2#define CONFIG_H
3
4#define PUB_TOPIC "device/echo/in"
5#define SUB_TOPIC "device/echo/out"
6#define PUBLISH_INTERVAL_MS 1000
7#define BUFFER_SIZE 32
8
9#ifndef WIFI_SSID
10#define WIFI_SSID "UNKNOWN"
11#endif
12
13#ifndef WIFI_PASS
14#define WIFI_PASS "UNKNOWN"
15#endif
16
17#ifndef MQTT_URI
18#define MQTT_URI "mqtt://0.0.0.0"
19#endif
20
21#endif