my plan is to send some data from phone over wifi to ESP module and then to AVR uC.
So I decided to set ESP server with AT commands:
AT+CIPMUX=1
AT+CIPSERVER=1,1001
ESP accepted both commands and returned "OK"
Then I checked the module ip:
AT+CIFSR
returned: 192.168.1.2
So I opened another putty connection -> telnet 192.168.1.2 port 1001
but no signal in ESP module, no data is being send. After a while the telnet connection terminates itself.
What's wrong ?
My plan is to simply pass data from phone to avr microcontroler through ESP module, is above way good for this ?
Thanks