I'm starting to use the bridge feature of my Yun. Even a basic sketch example doesn't work. It seems that the bridge.begin() statement hangs for ever. Here is the code I'm testing:
#include <Process.h>
void setup() {
Serial.begin(9600);
while (!Serial);
Serial.println("starting");Serial.flush();
Bridge.begin();
Serial.println("started");Serial.flush();
}
void loop() {
// Do nothing here.
}
The output in the serial terminal is the following:
Starting
No change, same behavior.
It seems that the bridge is not running!
This command returns nothing: ps | grep bridge
The file /tmp/bridge.py-stderr.log is not created