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:
bdring
2019-11-03 09:18:25 -06:00
parent 0ef7358432
commit 64b7b4b462
4 changed files with 120 additions and 45 deletions

View File

@@ -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) {