我需要从 arduino yun 草图运行 python 脚本。
python文件位于此处:
/mnt/sd/arduino/www/python/python.py
...这是arduino草图:
#include <Console.h>
#include <Process.h>
void setup() {
Bridge.begin();
Console.begin();
pinMode(A0, INPUT);
}
void loop() {
if(analogRead(A0) > 200){
Process p;
Console.println("Limit....");
p.runShellCommand("python /mnt/sd/arduino/www/python/python.py");
delay(1000);
}
Console.println(analogRead(A0));
delay(100);
}
如果我从 Winscp 窗口运行 python 文件,它工作正常。我觉得路径有问题...
提前致谢...