I have a fully functional code on my arduino that uses DHCP to access the internet via Ethernet cable.
It fetches data from Twitter using the GET function.
client.println("GET http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=xxx HTTP/1.0");
it also uses textfinder library and the EthernetClient function to access the internet.
What other changes do i have to make in order to properly implement the wifly shield instead of ethernet on arduino?
Cheers!