// Copy this file to `secrets.h` and fill in your values. // `secrets.h` is gitignored so credentials stay out of version control. // --- WiFi --- #define WIFI_SSID "your_wifi_ssid" #define WIFI_PASS "your_wifi_password" // --- MQTT --- #define MQTT_HOST "192.168.1.X" // Home Assistant / broker IP #define MQTT_PORT 1883 #define MQTT_USER "mqtt_user" #define MQTT_PASS "mqtt_password" #define MQTT_CLIENT "esp32c3_fan"