Home→Forums→MonoBrick EV3 Firmware→Problems with SpeedProfile and WaitHandles→Reply To: Problems with SpeedProfile and WaitHandles
January 5, 2015 at 20:07
#5182

Anders Søborg
Keymaster
Hi there
I will look into this…. in the meantime simply ignore the waitone on the waithandle like shown below.
motorWaitHandle = motorA.SpeedProfile(-50, 100, 700, 100,true);
//motorWaitHandle.WaitOne();
System.Threading.Thread.Sleep(1000);
motorA.Brake();
/Anders
Follow