Hi,
I'm currently porting the WorldMoodLamp code recently posted on the Instructables website.
http://www.instructables.com/id/Twitter ... -in-a-Box/
This code works with the WiFly shield, and as far as I can tell, passes in an HTMLParser object into the get call. The get completes synchronously, and the parsed values are read back from the HTMLParser before moving onto the next get.
WiServer seems to be much more asynchronous - is there a simple way to change the flow to operate more like this? :
1. Perform get request on twitter_search_url
2. Send each packet of response data to parser
3. Once request completed extract values from parser
4. Move on to next twitter_search_url, goto 1.
5. Once all 7 searches complete, update mood light
This is more synchronous, step 4 is only run once steps 1-3 have completed.
Thanks in advance.
Steve