BrianPeek / legoev3

LEGO MINDSTORMS EV3 API for .NET
Apache License 2.0
137 stars 72 forks source link

ClearChanges not working #2

Open BrianPeek opened 9 years ago

BrianPeek commented 9 years ago

This issue was imported from CodePlex

peekb wrote 2013-11-22 at 10:36 I worte following code but can't clear motor "RawValue"

private async void btnClearD_Click(object sender, RoutedEventArgs e)
{
    await this.Brick.DirectCommand.ClearChanges(InputPort.D);

    this.MotorD.Update(this.Brick);
}

Where I do wrong?