Home→Forums→MonoBrick Communication Library→Error sending brick command→Reply To: Error sending brick command
November 24, 2014 at 20:59
#5005
Oleg Stepanow
Participant
Aha! You use different connections for NXT and EV3:
connection = new LibUsb<TBrickCommand,TBrickReply>(LegoUsbConstants.VendorId, LegoUsbConstants.NXTProductId, ReadEndpointID.Ep02, WriteEndpointID.Ep01);
that for nxt
connection = new HidLib<TBrickCommand,TBrickReply>(LegoUsbConstants.VendorId, LegoUsbConstants.EV3ProductId, true);
and that for EV3
So the problem seems to be in HidLib, yes. Sory for bothering you, I will try to fix it someway)
Follow