Help me! - Arduino Wifi Shield

Hello!
I have an arduino wifi shield (http://arduino.cc/en/Main/ArduinoWiFiShield) but its upload speed is very slow (1000byte/30sec). How to improve the speed? =( =(
Thanks.

How to improve the speed?

Take out all the calls to "delay()" in your code.

The below has some info on increasing packet size to speed up file transfer.

http://arduino.cc/forum/index.php/topic,134868.0.html

Thanks you very much!
zoomkat.
Delay send each byte too long compared to send each 1000byte package. :slight_smile: :slight_smile:

I want to remain connected to the server but the WiFi Shield automatically disconnect when no data read write in 5 seconds.
how to remain connected?
Thanks!

Someone help me.
=(

Arduino Wifi Shield: What is the maximum packet size for a TCP connection or how can i get the maximum packet size?
client.write(array,[90]); ===> packet send successfully
client.write(array,[91]); ====> packet send failed
How to send a packet larger than 90
Thanks