Update settings to add enterprise wifi support
....now we just need to update the firmware itself....
This commit is contained in:
parent
965f302f24
commit
add6d2fd1e
1 changed files with 12 additions and 2 deletions
|
@ -1,13 +1,23 @@
|
||||||
|
// The SSID to connect to
|
||||||
#define WIFI_SSID "CHANGE_ME"
|
#define WIFI_SSID "CHANGE_ME"
|
||||||
|
// The password to use to connect
|
||||||
#define WIFI_PASSWORD "CHANGE_ME"
|
#define WIFI_PASSWORD "CHANGE_ME"
|
||||||
|
|
||||||
|
// Enterprise authentication. Uncomment to enable.
|
||||||
|
// #define WIFI_ENTERPRISE_ENABLED
|
||||||
|
// #define WIFI_ENTERPRISE_USERNAME "CHANGE_ME"
|
||||||
|
// #define WIFI_ENTERPRISE_PASSWORD "CHANGE_ME"
|
||||||
|
|
||||||
|
// The domain/IP of the MQTTS server
|
||||||
#define MQTT_SERVER "mqtt.example.com"
|
#define MQTT_SERVER "mqtt.example.com"
|
||||||
|
// The port to connect to.
|
||||||
// 1883 = unencrypted, 8883 = encrypted
|
// 1883 = unencrypted, 8883 = encrypted
|
||||||
// Connections are encrypted by default. There isn't currently a way to disable it.
|
// Connections are encrypted by default. There isn't currently a way to disable it.
|
||||||
#define MQTT_PORT "8883"
|
#define MQTT_PORT "8883"
|
||||||
|
// The username to authenticate with when connecting to the MQTT server.
|
||||||
#define MQTT_USERNAME "autoplant"
|
#define MQTT_USERNAME "autoplant"
|
||||||
|
// The password to authenticate with when connecting to the MQTT server.
|
||||||
#define MQTT_PASSWORD "CHANGE_ME"
|
#define MQTT_PASSWORD "CHANGE_ME"
|
||||||
|
|
||||||
|
// The interval at which messages should be sent to the MQTT server, in seconds
|
||||||
|
|
||||||
#define INTERVAL 5*60*1000
|
#define INTERVAL 5*60*1000
|
||||||
|
|
Loading…
Reference in a new issue