#ifndef CONFIG_H #define CONFIG_H #define SUB_TOPIC "device/echo/in" #define PUB_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://192.168.1.103" #endif #endif