Hello a need help,I need help with this I'm new to Arduino and I can not flesh out this error
warning: deprecated conversion from string constant to 'char*'
if (StrContains(HTTP_req, "ajax_inputs")) {
This the code..
if (StrContains(HTTP_req, "ajax_inputs")) {
Serial.println("open Ajax");
// send rest of HTTP header
client.println("Content-Type: text/xml");
client.println("Connection: keep-alive");
client.println();
// send XML file containing input states
It is a warning, not an error - and it's a stupid one too. It can be safely ignored.
rademit:
Hellow,
at the end of your code should bee function char StrContains(char *str, char *sfind) with some code.
Replace that function with this one: