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