-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving additional sensitive settings to USER_SECRETS.h
- Loading branch information
Showing
2 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
#define WIFI_SSID "REPLACE_WITH_YOUR_SSID" // Maximum of 63 characters | ||
#define WIFI_PASSWORD "REPLACE_WITH_YOUR_PASSWORD" // Minimum of 8 characters | ||
#define AP_PASSWORD "123456789" // Minimum of 8 characters; set to blank if you want the access point to be open | ||
#define HTTP_USERNAME "admin" // username to webserver authentication; | ||
#define HTTP_PASSWORD "admin" // password to webserver authentication; | ||
#define AP_PASSWORD "123456789" // Minimum of 8 characters; set to blank if you want the access point to be open | ||
|
||
#define WEBSERVER_AUTH_REQUIRED \ | ||
false //Set this line to true to activate webserver authentication (this line must not be commented). | ||
#define HTTP_USERNAME "admin" // username to webserver authentication; | ||
#define HTTP_PASSWORD "admin" // password to webserver authentication; | ||
|
||
#define MQTT_SERVER "192.168.xxx.yyy" // mqtt server address | ||
#define MQTT_PORT 1883 // mqtt server port | ||
#define MQTT_USER NULL // mqtt username, leave blank for no authentication | ||
#define MQTT_PASSWORD NULL // mqtt password, leave blank for no authentication |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters