Skip to content

Commit

Permalink
Remove Console WriteLine from PwmLed driver
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianstevens committed Aug 14, 2022
1 parent 6a89359 commit 489701d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Source/Meadow.Foundation.Core/Leds/PwmLed.cs
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,6 @@ protected async Task StartPulseAsync(TimeSpan pulseDuration, float highBrightnes
float steps = (float)(pulseDuration.TotalMilliseconds / intervalTime.TotalMilliseconds);
float delta = (highBrightness - lowBrightness) / steps;

Console.WriteLine($"Steps: {steps}, ChangeAmount {delta}");

while (true)
{
if (cancellationToken.IsCancellationRequested)
Expand Down

0 comments on commit 489701d

Please sign in to comment.