default volume 22

This commit is contained in:
2020-01-23 14:55:20 +00:00
parent b7828706e2
commit 4eb3877848
+9
View File
@@ -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("");