You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
esp-link/examples/arduino/EspLinkSample/EspLinkSample.ino

70 lines
1.3 KiB

#include "WebServer.h"
#include "EspLink.h"
void packetReceived(CmdRequest *req);
EspLink espLink(Serial, packetReceived);
void packetReceived(CmdRequest *req)
{
Serial.println("\nReceived\n");
uint16_t shrt, port;
espLink.cmdPopArg(req, &shrt, 2);
RequestReason reason = (RequestReason)shrt;
Serial.print("Reason: ");
Serial.println(reason);
uint8_t ip[4];
espLink.cmdPopArg(req, &ip, 4);
Serial.print("IP: ");
for(int i=0; i < 4; i++)
{
Serial.print(ip[i], DEC);
if( i != 3 )
Serial.print(".");
}
Serial.println();
espLink.cmdPopArg(req, &port, 2);
Serial.print("Port: ");
Serial.println(port);
{
uint16_t len = espLink.cmdArgLen(req);
char bf[len+1];
bf[len] = 0;
espLink.cmdPopArg(req, bf, len);
Serial.print("Url: ");
Serial.println(bf);
}
switch( reason )
{
case BUTTON:
{
uint16_t len = espLink.cmdArgLen(req);
char bf[len+1];
bf[len] = 0;
espLink.cmdPopArg(req, bf, len);
Serial.print("Button: ");
Serial.println(bf);
}
break;
}
}
void setup() {
Serial.begin(57600);
delay(10);
espLink.sendPacketStart(CMD_CB_ADD, 100, 1);
espLink.sendPacketArg(5, (uint8_t *)"webCb");
espLink.sendPacketEnd();
}
void loop() {
espLink.readLoop();
}