Need help with Toyota's .NET toolkit
- by AngryHacker
I can't make the following code work. It seems to do nothing.
var cntrl = new Toyota.CarControl();
while (cntrl.Speed > 0)
{
cntrl.ReduceSpeedBy(5);
Thread.Sleep(1000);
}
What am I doing wrong?