The use of the ESP8266 in the world of IoT

User avatar
By Ankeet Gugale
#60936 Hello Everyone,

I am working with esp8266 where i am receiving data through "esp8266" from a server using putty.
The problem I am facing is that when I am sending data to esp8266 through server I am not receiving all the data in the string.
for eg:-
if I am trying to send "helloworld" through server, I am only getting "hello" in my string.

my received string should contain "helloworld" the full data, but that is not happening.
Can anyone help why this is happening?
This is the process I've followed with esp8266 communicating via UART
AT
AT+CWMODE=1
AT+CIPMUX=1
AT+CWJAP="USSID","PASSWORD"
AT+CIFSR (HERE I AM GETTING IP address of esp8266)
AT+CIPSERVER=1,PORT NUMBER


I am connecting to server using IP address of esp8266,

Thank you in advance.