|
|
|
@ -62,8 +62,16 @@ void ledHtmlCallback(WebServerCommand command, char * data, int dataLen) |
|
|
|
|
next_ts = millis() + elapse; |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case SET_FIELD: |
|
|
|
|
if( strcmp_P(data, PSTR("frequency") ) == 0 ) |
|
|
|
|
{ |
|
|
|
|
frequency = webServer.getArgInt(); |
|
|
|
|
elapse = 1000 / frequency; |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case LOAD: |
|
|
|
|
webServer.setArgNum(1); |
|
|
|
|
webServer.setArgNum(2); |
|
|
|
|
webServer.setArgInt("frequency", frequency); |
|
|
|
|
case REFRESH: |
|
|
|
|
if( command == REFRESH ) |
|
|
|
|
webServer.setArgNum(1); |
|
|
|
@ -79,103 +87,3 @@ void ledHtmlCallback(WebServerCommand command, char * data, int dataLen) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
#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("Arg: "); |
|
|
|
|
Serial.println(bf); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case SUBMIT: |
|
|
|
|
{ |
|
|
|
|
int arg = 4; |
|
|
|
|
while( espLink.cmdGetArgc(req) > arg ) |
|
|
|
|
{ |
|
|
|
|
arg++; |
|
|
|
|
|
|
|
|
|
uint16_t len = espLink.cmdArgLen(req); |
|
|
|
|
char bf[len+1]; |
|
|
|
|
bf[len] = 0; |
|
|
|
|
espLink.cmdPopArg(req, bf, len); |
|
|
|
|
|
|
|
|
|
Serial.print(bf + 1); |
|
|
|
|
Serial.print(" -> "); |
|
|
|
|
Serial.println(bf + strlen(bf+1) + 2); |
|
|
|
|
} |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
espLink.sendPacketStart(CMD_WEB_JSON_DATA, 100, 3); |
|
|
|
|
espLink.sendPacketArg(4, ip); |
|
|
|
|
espLink.sendPacketArg(2, (uint8_t *)&port); |
|
|
|
|
|
|
|
|
|
char outBuf[30]; |
|
|
|
|
outBuf[0] = 0; |
|
|
|
|
strcpy(outBuf+1, "last_name"); |
|
|
|
|
strcpy(outBuf+11,"helloka"); |
|
|
|
|
espLink.sendPacketArg(19, (uint8_t *)outBuf); |
|
|
|
|
|
|
|
|
|
espLink.sendPacketEnd(); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
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(); |
|
|
|
|
} |
|
|
|
|
*/ |
|
|
|
|