Sensor questions

HI. i'm Developing Android App. But there is a big problem. sometimes Can't connect SensorBoard.
I just get a message that I Error connect, but I wonder why it's correct.

set board Mac. and use connectAsync.

board.connectAsync().continueWith(new Continuation<Void, Void>() {
@Override
public Void then(Task task) throws Exception {
if (task.isFaulted()) {
IsConnect=false;
} else {
SensroSetting();
IsConnect=true;
}
return null;
}
});

i used before connect usb and push button.

Comments

Sign In or Register to comment.