-
Notifications
You must be signed in to change notification settings - Fork 2
5. Lolin (Wemo) D1 Mini Design
jslawinsk edited this page Jun 4, 2021
·
6 revisions
To Enable D1 Mini code options un-comment the following line of code in TempController.ini file.
- //
- // Define the following if using a Lolin D1 Mini
- //
- // #define D1_MINI 1
Un-comment the following line to enable WiFi.
- // #define WIFI_ENABLED 1
Update the folloing in Wifi.ino to match your environment.
- //
- // TODO: Update The follwoing lines to specify your WiFi credentials
- //
- const char* ssid = "Update SSID var here";
- const char* password = "update NW Password here";
- //
- // TODO: Update the following to specify you desired IP
- //
- IPAddress ip( 10, 0, 0, 22 );
- //
- // TODO: Update the following to specify you network gateway IP
- //
- IPAddress gateway( 10, 0, 0, 1 );
- //
- // TODO: Web login user names change accordingly
- //
- const char* www_username = "admin";
- const char* www_password = "admin";