Skip to content

Commit d400d31

Browse files
committed
Merge pull request #450 from reaper7/patch-1
missing part of class name WiFiMesh -> ESP8266WiFiMesh
2 parents 2e1484e + 44bde71 commit d400d31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hardware/esp8266com/esp8266/libraries/ESP8266WiFiMesh/src/ESP8266WiFiMesh.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ bool ESP8266WiFiMesh::exchangeInfo(String message, WiFiClient curr_client)
9898
* @message The string to send to the node.
9999
*
100100
*/
101-
void WiFiMesh::connectToNode(String target_ssid, String message)
101+
void ESP8266WiFiMesh::connectToNode(String target_ssid, String message)
102102
{
103103
WiFiClient curr_client;
104104
WiFi.begin( target_ssid.c_str() );
@@ -165,4 +165,4 @@ void ESP8266WiFiMesh::acceptRequest()
165165
if (_client.connected())
166166
_client.println(response);
167167
}
168-
}
168+
}

0 commit comments

Comments
 (0)