I got my Yun for a week now an I'm quite confused about some examples working while others are not.
- I made a working google spreadsheet datalogger
#include <Process.h>
void setup()
{
Bridge.begin(); // Initialize the Bridge
}
void loop()
{
int value = 3;
Process p;
p.runShellCommand("curl \"https://docs.google.com/forms/d/1eiv8WtiVlrprazWh6UBarUWyglHIv3e9v61wODXIMT4/formResponse?draftResponse=%5B%5D%0D%0A&entry.1275390141=" + String(value) + "&pageHistory=0\" -k");
while(p.running());
delay(2000);
}
- I succesfully ran the Console Pixel example
BUT
Some examples that didn't work:
-Http Client
- Datalogger
(although I went trough every single setting)
It's just that when I open my serial window nothing shows up...
Help would be appriciated