-->
Page 1 of 1

Sending data from web to ESP8266

PostPosted: Mon Dec 12, 2016 5:08 pm
by sparkz19
What i am trying to accomplish

I want to fetch data from the web and send to ESP8266. The data is current news (about 5000 text characters) through some api. I expect the esp8266 module to be connected to the LCD screen to display the text (news).
I know i can use esp8266 server/client library for this.

Questions
But my question is how much data can i send to ESP8266 (what is the limit)?
And how much data can i store locally on the chip?

Thank you in advance

Re: Sending data from web to ESP8266

PostPosted: Fri Dec 23, 2016 8:18 pm
by mrburnette
TCP/UDP does not work like you think... They work on Ethernet frames:
http://www.esp8266.com/viewtopic.php?p=50615#p50615

Ray

Re: Sending data from web to ESP8266

PostPosted: Sat Dec 24, 2016 1:02 am
by villTech
correct. you can simply use WebClient sample.
it should be able to receive all reply from the host site. not 100% sure though. haven't tried.
care to try your 5000-char current news?