You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've installed StandardFirmata on my Uno R3.
I also followed the temporal hack in #48 to avoid crash.
Now I try to connect to the device:
val device:IODevice=FirmataDevice(JSerialCommTransport("COM3")) // using the name of a port
device.start() // initiate communication to the device
device.ensureInitializationIsDone() // wait for initialization is done
device.pins.forEach { p ->println(""+p.index +" -> "+p.supportedModes)
}
device.stop() // stop communication to the device
But the ensureInitializationIsDone function throws time out exception. Also (though I think it is a consequence of the previous error), listing the pins returns empty set.
Is there any step I missed?
The text was updated successfully, but these errors were encountered:
I've installed StandardFirmata on my Uno R3.
I also followed the temporal hack in #48 to avoid crash.
Now I try to connect to the device:
But the
ensureInitializationIsDone
function throws time out exception. Also (though I think it is a consequence of the previous error), listing the pins returns empty set.Is there any step I missed?
The text was updated successfully, but these errors were encountered: