How to make sure with Linino HTTP is working? following code does not work with new latest Arduino YUN.
#include <HttpClient.h>
#include <Bridge.h>
void setup() {
//Bridge.begin(115200);
delay(2000);
}
void loop() {
HttpClient client;
client.get("http://www.google.com/robot");
.....
}
I also upgraded the firmware (https://www.arduino.cc/en/Main/Software) but no luck . Which one i should use to down-grade ( http://download.linino.org/linino_distro/master/ ) ? or how can i use HttpClient in latest boards?