如何写入由草图的Bridge Process启动的Arduino Yun Linux进程的stdin?
背景:我有一个控制和日志记录应用程序,需要通过Temboo.com登录Google Drive电子表格。我根据Temboo示例中给出的Arduino草图进行工作。但是我的草图太大而且不适合可用的AVR内存,所以我想分开它:AVR端的控制和数据采集,以及Linux端的Python-Temboo。
我开始使用这个简单的Python脚本stdinFile.py
进行测试:
import sys
# Read the string from stdin
rowData = sys.stdin.readline()
f = open("blah.txt","w")
f.write(rowData)
f.close
sys.exit(0)
我从ssh会话中调用它并输入一堆字符。它有效:stdin被写入文件!
root@Arduino:~# python /root/stdinFile.py
adsfsadfdsaf
root@Arduino:~# cat blah.txt
adsfsadfdsaf
但是我如何从Arduino草图中做到这一点? Process.run()方法是阻塞的,所以这不起作用 - 该过程在写入之前阻止了草图:
Process p; // Create a process and call it "p"
p.begin("python"); // Process to launch the "Python" command
p.addParameter("/root/stdinFile.py"); // Add the script name to "python"
p.run(); // this is blocking! Script stalls here waiting for stdin
char record[]="2015-09-06,21:20:00,F,T,F,F,18.3,18.4,19.3,19.4,30.6,28.6";
for( char * src = record; *src != '\0'; src++) {
p.write(*src);
}
p.flush();
我还尝试在p.run()
之前进行写操作,换句话说,在脚本运行之前填充stdin流,但是也没有给出任何结果。
谢谢!
答案 0 :(得分:1)
您可以尝试使用p.runAschronchronously()而不是p.run()。 runAsynchronously()是非阻塞的,您可以使用p.running()检查脚本是否仍在运行。您可以在以下链接中找到流程类的文档: