aboutsummaryrefslogtreecommitdiff
path: root/libraries/Bridge/examples/ShellCommands/ShellCommands.ino
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/Bridge/examples/ShellCommands/ShellCommands.ino')
-rw-r--r--libraries/Bridge/examples/ShellCommands/ShellCommands.ino5
1 files changed, 2 insertions, 3 deletions
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());