diff options
Diffstat (limited to 'libraries')
4 files changed, 11 insertions, 104 deletions
| diff --git a/libraries/Bridge/examples/HttpClient/HttpClient.ino b/libraries/Bridge/examples/HttpClient/HttpClient.ino index bf5e8ff..5696bf0 100644 --- a/libraries/Bridge/examples/HttpClient/HttpClient.ino +++ b/libraries/Bridge/examples/HttpClient/HttpClient.ino @@ -5,17 +5,19 @@ void setup() {    pinMode(13, OUTPUT);    digitalWrite(13, LOW);    Bridge.begin(); +  Serial.begin(9600); +  while(!Serial);  }  void loop() {    HttpClient client; -  client.get("http://my.server.address/file.php"); +  client.get("http://arduino.cc/asciilogo.txt"); -  char c = client.read(); -  if (c=='1') -    digitalWrite(13, HIGH); -  if (c=='0') -    digitalWrite(13, LOW); +  while (client.available()) { +    char c = client.read(); +    Serial.print(c); +  } +  Serial.flush();    delay(5000);  } diff --git a/libraries/Bridge/examples/OLDYahooWeather/OLDYahooWeather.ino b/libraries/Bridge/examples/OLDYahooWeather/OLDYahooWeather.ino deleted file mode 100644 index b751e1d..0000000 --- a/libraries/Bridge/examples/OLDYahooWeather/OLDYahooWeather.ino +++ /dev/null @@ -1,94 +0,0 @@ -/* -  Yahoo Weather Forecast parser -  - http://developer.yahoo.com/weather/ - This sketch demonstrate how to use the Linux command line tools - to parse a simple XML file on the Arduino Yún. -  - First thing download the XML file from the Yahoo Weather service  - than use "grep" and "cut" to extract the data you want. -  - To find  the location ID of your location, browse or search for your  - city from the Weather home page. The location ID is in the URL for  - the forecast page for that city. -  - created 21 Jun 2013 - by Federico Vanzati -  - */ - -#include <Bridge.h> - -String locationID = "725003";  // Turin, Italy - -// table with keywords to search in the XML file -// the third column is the tag to the field -String forecast[10][3] = { -  "location",   "2",  "city", -  "condition",  "6",  "temperature", -  "condition",  "2",  "condition", -  "astronomy",  "2",  "sunrise", -  "astronomy",  "4",  "sunset", -  "atmosphere", "2",  "humidity", -  "atmosphere", "6",  "pressure", -  "wind",       "6",  "wind speed", -  "wind",       "4",  "wind direction", -  "wind",       "2",  "chill temperature"   -}; - - -void setup() { -  Bridge.begin(); -  Serial.begin(9600); -  while(!Serial); -   -  Serial.println("Weather Forecast for your location: \n"); -} - -void loop() { - -  for(int i=0; i<10; i++) { -     -    // Compose the request -     -    // curl is a program that connect to an URL an download the content -    // is used to get the weather forecast from yahoo in XML format -    String command = "curl -s ";  // -s is the silent option -    command += "http://weather.yahooapis.com/forecastrss";  // yahoo weather RSS service -    command += "?w=";  // query for the location -    command += locationID; -    //command += "\\&u=c";  // ask for celsius degrees -     -    // add a new process  -    // grep is used to extract a single line of content containig a search keyword form the XML -    command += " | ";  // pipe a new process -    command += "grep ";  -    command += forecast[i][0];  // word to search in the XML file - -    // add a new process  -    // cut is a program that split a text in different fields  -    // when encouter the passed  character delimiter -    command += " | ";  // pipe a new process -    command += "cut "; -    command += "-d \\\" ";  // -d parameter split the string every " char -    command += "-f ";  // -f parameter is to return the 6th splitted element  -    command += forecast[i][1]; // the field are already manually calculated and inserted in the forecast table - - -    Serial.print(forecast[i][2]); -    Serial.print("= "); -     -    // run the command -    Process wf; -    wf.runShellCommand(command); -     -    while(wf.available()>0) -    { -      Serial.print( (char)wf.read() ); -    } -  } -   -  //do nothing forevermore -  while(1);   -} - diff --git a/libraries/Bridge/examples/ShellCommands/ShellCommands.ino b/libraries/Bridge/examples/ShellCommands/ShellCommands.ino index aabd0ec..5a4c291 100644 --- a/libraries/Bridge/examples/ShellCommands/ShellCommands.ino +++ b/libraries/Bridge/examples/ShellCommands/ShellCommands.ino @@ -1,4 +1,3 @@ -  /*    Running shell commands using Process class.  @@ -32,10 +31,10 @@ void setup() {  void loop() {    Process p; -  // This command line runs the wifiCheck script, (lua /arduino/pretty...), then  +  // This command line runs the WifiStatus script, (/usr/bin/pretty-wifi-info.lua), then     // sends the result to the grep command to look for a line containing the word    // "Signal:"  the result is passed to this sketch: -  p.runShellCommand("lua /arduino/pretty_wifi_info.lua | grep Signal"); +  p.runShellCommand("/usr/bin/pretty-wifi-info.lua | grep Signal");    // do nothing until the process finishes, so you get the whole output:    while(p.running());   diff --git a/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino b/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino index 692370c..7d50819 100644 --- a/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino +++ b/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino @@ -3,7 +3,7 @@    WiFi Status    This sketch run a script already present on your Yún in the - /arduino directory called "pretty_wifi_info.lua" that takes  + /usr/bin directory called "pretty-wifi-info.lua" that takes    the informations of the WiFi interface and print it on the   Serial monitor. | 
