String webpage = "<h1>Hello</h1><h2>World!</h2><button>LED1</button>";
String cipSend = "AT+CIPSEND=";
cipSend += connectionId;
cipSend += ",";
cipSend +=webpage.length();
cipSend +="\r\n";
sendData(cipsend,1000,DEBUG);
for last line arduino IDE show this error:
‘cipsend’ was not declared in this scope
what should i do???