You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ether.browseUrl(PSTR(""), "/arduino/test.php?data1=test", website, my_result_cb);
NOT working if not using gateway:
Gateway has nothing to do with direct local ip connection i guess...
ether.staticSetup(myip, 0, 0, mask);
I rly need help.
Im using server localy.
`const char website[] PROGMEM = "192.168.0.5";
static byte myip[] = { 192,168,0,211 };
static byte mask[] = { 255,255,255,0 };
static byte hisip[] = { 192,168,0,5 };
`
String dataInput = "/arduino/test.php?data1=test";
//NOT WORKING
//NOT WORKING
const char *postval = dataInput.c_str();
//NOT WORKING
const char *postval = "/arduino/test.php?data1=test";
//WORKING
ether.browseUrl(PSTR(""), "/arduino/test.php?data1=test", website, my_result_cb);
ether.browseUrl(PSTR(""), "/arduino/test.php?data1=test", website, my_result_cb);
NOT working if not using gateway:
Gateway has nothing to do with direct local ip connection i guess...
ether.staticSetup(myip, 0, 0, mask);
ether.browseUrl(PSTR(""), postval, website, my_result_cb);
httpPost is even worse.
What im doing wrong here, please any advice?
Thanks in advance
The text was updated successfully, but these errors were encountered: