diff options
author | Fede85 <f.vanzati@gmail.com> | 2013-09-06 15:38:07 +0200 |
---|---|---|
committer | Fede85 <f.vanzati@gmail.com> | 2013-09-06 15:38:07 +0200 |
commit | a3e2e68e2b7edb9f5434734bed4001df1e65451c (patch) | |
tree | d4ef938bd8179a15d41b19197c51ca0a7f93936f /libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino | |
parent | 35f10e412f5d00027f9d7f2036243c681dbec406 (diff) |
Bridge library to the 1.5 format
Diffstat (limited to 'libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino')
-rw-r--r-- | libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino b/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino deleted file mode 100644 index 5921b70..0000000 --- a/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino +++ /dev/null @@ -1,50 +0,0 @@ - -/* - WiFi Status - - This sketch runs a script called "pretty-wifi-info.lua" - installed on your Yún in folder /usr/bin. - It prints information about the status of your wifi connection. - - It uses Serial to print, so you need to connect your Yún to your - computer using a USB cable and select the appropriate port from - the Port menu - - created 18 June 2013 - By Federico Fissore - - This example code is in the public domain. - */ - -#include <Process.h> - -void setup() { - Serial.begin(9600); // initialize serial communication - while(!Serial); // do nothing until the serial monitor is opened - - Serial.println("Starting bridge...\n"); - pinMode(13,OUTPUT); - digitalWrite(13, LOW); - Bridge.begin(); // make contact with the linux processor - digitalWrite(13, HIGH); // Led on pin 13 turns on when the bridge is ready - - delay(2000); // wait 2 seconds -} - -void loop() { - Process wifiCheck; // initialize a new process - - wifiCheck.runShellCommand("/usr/bin/pretty-wifi-info.lua"); // command you want to run - - // while there's any characters coming back from the - // process, print them to the serial monitor: - while (wifiCheck.available() > 0) { - char c = wifiCheck.read(); - Serial.print(c); - } - - Serial.println(); - - delay(5000); -} - |