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

Corrected error in printWifiStatus

This commit is contained in:
Tom Igoe
2012-03-04 17:19:24 -05:00
parent 1d7d421cef
commit 46fa003066
7 changed files with 14 additions and 7 deletions

View File

@@ -132,7 +132,8 @@ void printWifiStatus() {
// print your WiFi shield's IP address:
IPAddress ip = WiFi.localIP();
Serial.print("IP Address: ");
Serial.print("IP Address: ");
Serial.println(ip);
// print the received signal strength:
long rssi = WiFi.RSSI();