dhruv_electro
Advanced Member level 4
I am using AT Commands for ESP8266. I want:
I am using this:
Now If I check with clients, I can send and receive data on TCP port 80 and UDP port 506 successfully, but no TCP server is created for 33666.
Does ESP8266 only allow one TCP server for AT Commands? If yes, how to bypass it?
- TCP Server at 80
- TCP Server at 33666
- UDP at 506
I am using this:
Code:
AT+CIPMUX=1
OK
AT+CIPSERVER=1,33666
no change
OK
AT+CIPSTART=4,"UDP","192.168.0.5",21,506,2
4,CONNECT
OK
Does ESP8266 only allow one TCP server for AT Commands? If yes, how to bypass it?