#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