When the Arduino connects to a website, what does it read? If I make a html file and host it on a website, does it read the html data or does it read some other data?
If you use an Arduino card as a client you can connect it to a web site, send a URL (http request) and expect back a web page. It will prefixed by some header information followed by the html code for the web page. The web page may include links to JPEG files that for an ordinary browser would cause images to be embedded in the web page that is displayed.
If you want to scrub data out of the response information you will need to be good a parsing strings - the data you get back from the website for the page you asked for.
Cheers
Catweazle NZ
So the arduino will read the HTML code right? I have been trying to test this out. I have inserted a number between two symbols so that when the Arduino gets the data and html from the website, it knows what it is searching for. However, It doesn't seem to be getting anything from those website.
it knows what it is searching for. However, It doesn't seem to be getting anything from those website.
The problem is probably in your code somewhere.