We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All sketches that include the yun bridge function hang during setup at Bridge.begin();
e.g connect to the console and run
YunServer server;
void setup() { // put your setup code here, to run once: Serial.begin(9600); //Start the serial connection with the computer
Serial.println("starting bridge"); Bridge.begin(); Serial.println("Bridge started");
starting bridge wiill be printed to the serial port but bridge started never will be
The text was updated successfully, but these errors were encountered:
it appears the run-bridge command is not starting / running correctly
Sorry, something went wrong.
@davehun, you are right. You can use Arduino firmware to use the bridge for now. We will check and update the firmware. The instructions are here: https://github.com/domino-team/docs/blob/master/qi/arduino-yun.md or http://domino.io/docs/qi/arduino-yun.html
No branches or pull requests
All sketches that include the yun bridge function hang during setup at
Bridge.begin();
e.g
connect to the console and run
include <Bridge.h>
include <YunServer.h>
include <YunClient.h>
YunServer server;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600); //Start the serial connection with the computer
Serial.println("starting bridge");
Bridge.begin();
Serial.println("Bridge started");
starting bridge wiill be printed to the serial port but bridge started never will be
The text was updated successfully, but these errors were encountered: