diff options
author | Federico Fissore <f.fissore@arduino.cc> | 2013-06-18 16:42:24 +0200 |
---|---|---|
committer | Federico Fissore <f.fissore@arduino.cc> | 2013-06-18 16:42:24 +0200 |
commit | 78f0baeb26a05a5fc547848c62d71a69dae47479 (patch) | |
tree | 11052e8c80a9b5fdc6af0316a61bb541775d1e67 /libraries/Bridge/examples/OLDWiFiCheck/OLDWiFiCheck.ino | |
parent | 01c814479d1010587813ec1992f11ad456874f9f (diff) |
wifi examples renamed OLD*, introducing new comprehensive WiFiStatus example
reviewed ShellCommands example to be not wifi related
Diffstat (limited to 'libraries/Bridge/examples/OLDWiFiCheck/OLDWiFiCheck.ino')
-rw-r--r-- | libraries/Bridge/examples/OLDWiFiCheck/OLDWiFiCheck.ino | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/libraries/Bridge/examples/OLDWiFiCheck/OLDWiFiCheck.ino b/libraries/Bridge/examples/OLDWiFiCheck/OLDWiFiCheck.ino new file mode 100644 index 0000000..1cb9f03 --- /dev/null +++ b/libraries/Bridge/examples/OLDWiFiCheck/OLDWiFiCheck.ino @@ -0,0 +1,53 @@ +/* + Arduino Yun Wireless Config Check + + Checks the wireless state of Arduino Yun by calling + the linux command iwconfig. + + Upload this to an Arduino Yun via serial (not WiFi) + then open the serial monitor to see the status of + your Yun's WiFi connection. If it's connected to + a wireless network, the ESSID (name) of that network + and the signal strength will appear. + + The circuit: + * Arduino Yun + + created 22 May 2013 + by Tom Igoe + + 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 + + pinMode(13,OUTPUT); + digitalWrite(13, LOW); + Bridge.begin(); // make contact with the linux processor + digitalWrite(13, HIGH); + + delay(2000); // wait 2 seconds + + Process wifiCheck; // initialize a new process + + + wifiCheck.begin("iwconfig"); // command you want to run + wifiCheck.addParameter("wlan0"); // parameter of the command + wifiCheck.run(); // run the command + + // while there's any characters coming back from the + // process, print them to the serial monitor: + while (wifiCheck.available() > 0) { + char thisChar = wifiCheck.read(); + Serial.print(thisChar); + } +} + +void loop() { + // nothing to do here. +} + |