autoplant/autoplant/settings.h.example

14 lines
381 B
Plaintext

#define WIFI_SSID "CHANGE_ME"
#define WIFI_PASSWORD "CHANGE_ME"
#define MQTT_SERVER "mqtt.mooncarrot.space"
// 1883 = unencrypted, 8883 = encrypted
// TODO: Support MQTTS - ref https://github.com/knolleary/pubsubclient/issues/574#issuecomment-464528162
#define MQTT_PORT "8883"
#define MQTT_USERNAME "autoplant"
#define MQTT_PASSWORD "CHANGE_ME"
#define INTERVAL 5*60*1000