default volume 22
This commit is contained in:
@@ -27,6 +27,8 @@ WiFiServer server(80); // Set web server port number to 80
|
||||
String header;
|
||||
const int ledPin = 26;
|
||||
|
||||
int charCount = 0;
|
||||
|
||||
|
||||
|
||||
void setup()
|
||||
@@ -58,6 +60,13 @@ void setupServer() {
|
||||
while (WiFi.status() != WL_CONNECTED) {
|
||||
delay(500);
|
||||
Serial.print(".");
|
||||
|
||||
charCount++;
|
||||
if (charCount >= 80) {
|
||||
charCount = 0;
|
||||
Serial.println("");
|
||||
}
|
||||
|
||||
}
|
||||
// Print local IP address and start web server
|
||||
Serial.println("");
|
||||
|
||||
Reference in New Issue
Block a user