Chat freely about anything...

User avatar
By atexit8
#46100 I am following the tutorial at https://alselectro.wordpress.com/2015/05/13/wifi-module-esp8266-2-tcp-client-server-mode

The module is set up in station mode, not AP mode.

The module does not respond when I try to connect to it through any web browser.

However, I can ping it.

I have basically issued the commands
Code: Select allAT+CIPMUX=1
AT+CIPSERVER=1,80

and get no errors.

What am I missing?
User avatar
By martinayotte
#46105 The command you've sent is just enabling TCP server on port 80, it is not handling any HTTP requests, it is up to your application to do that. If you look at serial port, you should see the HTTP request been received, something like "+IPD,0,278:GET / HTTP/1.1….", but to display something in the browser, it will take some amount of effort/coding.
Personally, I would suggest you to go away from AT firmware, since it is simply too much overhead to build some simple stuff like a WebServer. You should go to some other framework, Arduino, Sming, of ESP-Httpd.