Is there some place I can go to get a better understanding of how the Huzzah differs from an arduino UNO ?
I don't mean specs-wise. I know the clock is 80 Mhz and the Flash size is 4M , but rather with respect to SYNTAX .
I have no webserver experience but I looked at the webserver example and noticed these:
const char* ssid = "yourssid";
const char* password = "yourpassword";
const char* host = "www.adafruit.com";
const int httpPort = 80;
// Use WiFiClient class to create TCP connections
// We now create a URI for the request
// This will send the request to the server
// Read all the lines of the reply from server and print them to Serial
So my question is probably dumb but is all that code based on the HTML language ?
Is there a more systematic way to learn how to use the Huzzah other than looking at other people's code ?
When I started using an arduino everyone recommended I read books on C++ so I bought some but I wound up being so busy doing projects with the UNO by just looking at examples that I never got around to reading the books on C++ (I know, my bad , LOL!). So is using the Huzzah similar ? At first glance it looks like the first thing I need to learn is the syntax or rather, why it is the way it is. What is the best way to learn how to write code for these modules ?