Hey,
I am trying to run a python script which is on my linino using process. How do I go about this.
I tried running a shell command which creats a fifo file, but it does not seem to be reflecting on Linono. (I know these are two different things, but first I wanted to try this)
#include <Process.h>
void setup() {
Bridge.begin();
Serial.begin(9600);
Process p;
p.runShellCommand("mkfifo abcdsad");
}
void loop() {
}
Any input will be appreciated