ESP8266 Send Data To a Website (ESP-01/ESP-12)

Arduino Code Example: AT commands used in the video: 1.) Reset Module AT RST 2.) Join Access Point (Internet Router) AT CWJAP=“ATT409“,“5654665991“ 3.) Connec to website AT CIPSTART=“TCP“,““,80 4.) Specify number of bytes you’ll send AT CIPSEND=81 AT CIPSEND=154 5.) Send GET Request GET /?apples=56&oranges=23 HTTP/1.1 Host: 5.) send POST Request P
Back to Top