lasselukkari / aWOT

Arduino web server library.
MIT License
283 stars 41 forks source link

Speed up on sending responses for ESP8266 #4

Closed pablorodiz closed 8 years ago

pablorodiz commented 8 years ago

Sending messages in 32 bytes chunks (as printP and writeP do) makes the communication too slow on ESP8266, so I added a write(char*, size_t) function to be able to send the full message in only one piece if you know what you are doing.

lasselukkari commented 8 years ago

Thanks for contributing!