AT+CWMODE=2
AT+CIPMUX=1
AT+CIPSERVER=1,333
AT+CIPSTART=<id>,"UDP","IP address of client",333
AP+CIPSEND=<id>,length of data (in bytes)
After executing all of the above commands successfully (received "OK" for every command), I get the '>' prompt to type in the data! I type it and it gets transmitted successfully as I get "SEND OK".
The problem is that I don't receive the same on the client (data sent). These were the commands I executed on client before sending data:
AT+CWMODE=1
AT+CIPMUX=1
AT+CWJAP="ssid","password",<id>,<encryption" // will set this at AP using CWSAP
Any remedy for this problem?
Thanks in advance!