Sending info to ESP
Posted: Wed Jul 15, 2015 9:52 pm
When you send info to a ESP what dose the backward slash mean? for instance...
normally one would send
but when sending from a arduino
normally one would send
Code: Select all
AT+CIPSTART=4,”TCP”,”www.google.com”,80
but when sending from a arduino
Code: Select all
String cmd = "AT+CIPSTART=\"TCP\",\"";
cmd += DST_IP;
cmd += "\",80";
Serial2.println(cmd);