Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into bug/x74595
Browse files Browse the repository at this point in the history
  • Loading branch information
ctacke committed Sep 6, 2023
2 parents 9f45bcb + a621470 commit 5abc7a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ public override async Task Run()
while (true)
{
// Motor clockwise
motor.Clockwise();
motor.StartClockwise();
await Task.Delay(1000);

// Motor Stop
motor.Stop();
await Task.Delay(500);

// Motor counter clockwise
motor.CounterClockwise();
motor.StartCounterClockwise();
await Task.Delay(1000);

// Motor Stop
Expand Down

0 comments on commit 5abc7a7

Please sign in to comment.