mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-18 07:52:14 +01:00
Changed ShellCommands from Console to Serial
This commit is contained in:
parent
0002863b90
commit
d612a6f2ee
@ -1,26 +1,41 @@
|
||||
|
||||
/* Demonstrate shell commands */
|
||||
/*
|
||||
Running shell coommands using Process class.
|
||||
|
||||
This sketch demonstrate how to run linux shell commands
|
||||
using an Arduino Yún.
|
||||
|
||||
The circuit:
|
||||
* Arduino Yun
|
||||
|
||||
created 12 Jun 2013
|
||||
by Cristian Maglie
|
||||
modified 21 June 2013
|
||||
by Tom Igoe
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
*/
|
||||
|
||||
#include <Process.h>
|
||||
|
||||
void setup() {
|
||||
// initialize the Bridge and Serial connections:
|
||||
Bridge.begin();
|
||||
Console.begin();
|
||||
Console.buffer(64);
|
||||
Serial.begin(9600);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
Process p;
|
||||
// This command line prints the name of the wireless that the board is connected to or that the board has created
|
||||
// This command line prints the name of the wireless network
|
||||
// that the board is connected to, or the network which the board has created:
|
||||
p.runShellCommand(F("lua /usr/lib/lua/pretty_wifi_info.lua | grep SSID"));
|
||||
|
||||
// Read command output
|
||||
while (p.available()) {
|
||||
char c = p.read();
|
||||
Console.print(c);
|
||||
}
|
||||
Console.flush();
|
||||
|
||||
delay(5000);
|
||||
Serial.print(c);
|
||||
}
|
||||
while (true); // do nothing more
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user