2013-07-01 20:11:14 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
WiFi Status
|
|
|
|
|
|
|
|
This sketch run a script already present on your Yún in the
|
2013-07-05 15:06:37 +02:00
|
|
|
/usr/bin directory called "pretty-wifi-info.lua" that takes
|
2013-07-01 20:11:14 +02:00
|
|
|
the informations of the WiFi interface and print it on the
|
|
|
|
Serial monitor.
|
|
|
|
|
|
|
|
created 18 June 2013
|
|
|
|
By Federico Fissore
|
|
|
|
|
|
|
|
This example code is in the public domain.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-06-18 16:42:24 +02:00
|
|
|
#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);
|
2013-07-01 20:11:14 +02:00
|
|
|
Bridge.begin(); // make contact with the linux processor
|
|
|
|
digitalWrite(13, HIGH); // Led on pin 13 turns on when the bridge is ready
|
2013-06-18 16:42:24 +02:00
|
|
|
|
2013-07-01 20:11:14 +02:00
|
|
|
delay(2000); // wait 2 seconds
|
2013-06-18 16:42:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
2013-07-01 20:11:14 +02:00
|
|
|
Process wifiCheck; // initialize a new process
|
2013-06-18 16:42:24 +02:00
|
|
|
|
2013-07-05 13:50:00 +02:00
|
|
|
wifiCheck.runShellCommand("/usr/bin/pretty-wifi-info.lua"); // command you want to run
|
2013-06-18 16:42:24 +02:00
|
|
|
|
|
|
|
// while there's any characters coming back from the
|
|
|
|
// process, print them to the serial monitor:
|
|
|
|
while (wifiCheck.available() > 0) {
|
2013-07-01 20:11:14 +02:00
|
|
|
char c = wifiCheck.read();
|
|
|
|
Serial.print(c);
|
2013-06-18 16:42:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Serial.println();
|
|
|
|
|
|
|
|
delay(5000);
|
|
|
|
}
|
|
|
|
|