autoplant/autoplant/settings.h.example

14 lines
355 B
Plaintext

#define WIFI_SSID "CHANGE_ME"
#define WIFI_PASSWORD "CHANGE_ME"
#define MQTT_SERVER "mqtt.example.com"
// 1883 = unencrypted, 8883 = encrypted
// Connections are encrypted by default. There isn't currently a way to disable it.
#define MQTT_PORT "8883"
#define MQTT_USERNAME "autoplant"
#define MQTT_PASSWORD "CHANGE_ME"
#define INTERVAL 5*60*1000