Updates, new terrifying lava options.
- Lava now has flow and growth options - APA102 is now the default - Changed the default wifi password - Fix #include (capitalization error)
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
#include "settings.h"
|
||||
|
||||
const char* ssid = "TWANG_AP";
|
||||
const char* passphrase = "esp32rocks";
|
||||
const char* passphrase = "12345666";
|
||||
|
||||
WiFiServer server(80);
|
||||
|
||||
@@ -22,11 +22,15 @@ void ap_setup() {
|
||||
* @param ssid_hidden Network cloaking (0 = broadcast SSID, 1 = hide SSID)
|
||||
*/
|
||||
ret = WiFi.softAP(ssid, passphrase, 2, 0);
|
||||
|
||||
//Serial.println("\r\nWiFi AP online ...");
|
||||
server.begin();
|
||||
|
||||
|
||||
Serial.print("\r\nWiFi SSID: ");
|
||||
Serial.println(ssid);
|
||||
Serial.print("WiFi Password: ");
|
||||
Serial.println(passphrase);
|
||||
Serial.println("Web Server Address: http://192.168.4.1");
|
||||
|
||||
|
||||
}
|
||||
|
||||
void sendStatsPage(WiFiClient client) {
|
||||
|
||||
Reference in New Issue
Block a user