2

Python スクリプトをオンボードの linino RAM に保存しようとしていますが、うまく動作しません。Pythonスクリプトファイルを正しく書いていますか? 誰かが私のコードを見て、私が間違っている場所を教えてくれますか? 私は基本的にarduinoサイトの例からコードを変更して、これを機能させようとしました。lininoに書き込み/保存して、シリアルポートから出力を印刷したいだけです。前もって感謝します!

#include <FileIO.h>

void setup() {
// Setup Bridge (needed every time we communicate with the Arduino Yún)
Bridge.begin();
// Initialize the Serial
Serial.begin(9600);

while(!Serial);  // wait for Serial port to connect.
Serial.println("File Write Script example\n\n");

// Setup File IO
FileSystem.begin();

// Upload script used to gain network statistics  
uploadScript();
}  

void loop() 
{
// Run stats script every 5 secs.
runScript();
Serial.println("Just ran script");
delay(5000);
}

// this function creates a file into the linux processor
void uploadScript() 
{
// Write our shell script in /tmp
// Using /tmp stores the script in RAM this way we can preserve 
// the limited amount of FLASH erase/write cycles
File script = FileSystem.open("/tmp/example.py", FILE_WRITE);
script.print("#!/usr/bin/python");
script.print("import urllib2");
script.print("import ast");
script.print("r = urllib2.urlopen('https://python.org')");
script.print("a = r.read()");
//script.print("y = ast.literal_eval(a)");
script.print("print a[:100]"); //i want to index something in the dictionary
script.close();  // close the file

// Make the script executable
Process chmod;
chmod.begin("chmod");      // chmod: change mode
chmod.addParameter("+x");  // x stays for executable
chmod.addParameter("/tmp/example.py");  // path to the file to make it executable
chmod.run();
}


// this function run the script and read the output data
void runScript() 
{
// Run the script and show results on the Serial
Process myscript;
myscript.begin("/tmp/example.py");
myscript.run();

String output = "";

// read the output of the script
while (myscript.available()) 
{
  output += (char)myscript.read();
}
// remove the blank spaces at the beginning and the ending of the string
output.trim();
Serial.println(output);
Serial.println("just rand"); //for debugging
Serial.flush();
}
4

1 に答える 1

1

約 1 年前にこの問題に最初に取り組んだとき、私はずっと初心者だったので、Arduino に SSH で接続し、vi でスクリプトを記述し、yun の Linux 側を保存する方が明らかにはるかに簡単です。これを実行してスクリプトをうまく実行するのに問題はありませんでした。arduino スケッチで Linux にスクリプトを書き込もうとするのを気にしないでください! 乾杯。

于 2014-10-06T18:02:58.493 に答える