mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-13 13:01:55 +03:00
add ESP8266WiFiMesh library
This commit is contained in:
44
libraries/ESP8266WiFiMesh/examples/HelloMesh/HelloMesh.ino
Normal file
44
libraries/ESP8266WiFiMesh/examples/HelloMesh/HelloMesh.ino
Normal file
@ -0,0 +1,44 @@
|
||||
#include <ESP8266WiFi.h>
|
||||
#include <ESP8266WiFiMesh.h>
|
||||
|
||||
/* Create the mesh node object */
|
||||
ESP8266WiFiMesh mesh_node = ESP8266WiFiMesh(ESP.getChipId(), manageRequest);
|
||||
|
||||
/**
|
||||
* Callback for when other nodes send you data
|
||||
*
|
||||
* @request The string received from another node in the mesh
|
||||
* @returns The string to send back to the other node
|
||||
*/
|
||||
String manageRequest(String request)
|
||||
{
|
||||
/* Print out received message */
|
||||
Serial.print("received: ");
|
||||
Serial.println(request);
|
||||
|
||||
/* return a string to send back */
|
||||
return String("Hello world response.");
|
||||
}
|
||||
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(115200);
|
||||
delay(10);
|
||||
|
||||
Serial.println();
|
||||
Serial.println();
|
||||
Serial.println("Setting up mesh node...");
|
||||
|
||||
/* Initialise the mesh node */
|
||||
mesh_node.begin();
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
/* Accept any incoming connections */
|
||||
mesh_node.acceptRequest();
|
||||
|
||||
/* Scan for other nodes and send them a message */
|
||||
mesh_node.attemptScan("Hello world request.");
|
||||
delay(1000);
|
||||
}
|
Reference in New Issue
Block a user