1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-07 00:04:36 +03:00

CaptivePortalAdvanced: Change debug print to println

This commit is contained in:
Jiří Engelthaler
2018-08-02 21:23:44 +02:00
committed by Ivan Grokhotkov
parent 319adc6b8a
commit f77645465c
2 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ void setup() {
delay(1000);
Serial.begin(9600);
Serial.println();
Serial.print("Configuring access point...");
Serial.println("Configuring access point...");
/* You can remove the password parameter if you want the AP to be open. */
WiFi.softAPConfig(apIP, apIP, netMsk);
WiFi.softAP(softAP_ssid, softAP_password);