mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-29 18:52:13 +01:00
renamed two lua scripts
This commit is contained in:
parent
6eec8e0922
commit
172007b475
@ -97,7 +97,7 @@ public class SSHUploader extends Uploader {
|
||||
|
||||
String additionalParams = verbose ? prefs.get("upload.params.verbose") : prefs.get("upload.params.quiet");
|
||||
|
||||
boolean success = ssh.execSyncCommand("merge-sketch-with-bootloader /tmp/sketch.hex", System.out, System.err);
|
||||
boolean success = ssh.execSyncCommand("merge-sketch-with-bootloader.lua /tmp/sketch.hex", System.out, System.err);
|
||||
ssh.execSyncCommand("kill-bridge");
|
||||
success = success && ssh.execSyncCommand("run-avrdude /tmp/sketch.hex '" + additionalParams + "'", System.out, System.err);
|
||||
return success;
|
||||
|
@ -32,7 +32,7 @@ void setup() {
|
||||
void loop() {
|
||||
Process wifiCheck; // initialize a new process
|
||||
|
||||
wifiCheck.runShellCommand("lua /arduino/pretty_wifi_info.lua"); // command you want to run
|
||||
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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user