Home→Forums→MonoBrick EV3 Firmware→Vehicle Forward method→Reply To: Vehicle Forward method
October 19, 2014 at 08:47
#4904
Anders Søborg
Keymaster
Hi there
Yes I can see your problem. I already committed a fix. Until this will be official released simply start your call in a new thread like this.
new Thread(delegate() {
vehicle.Forward (50);
}).Start();
However please note that other functions also block for a reason. They return a waithandle so you can wait for the movement to finish. You can see an example of this here.
Thanks for pointing this out!
/Anders
Follow