diff --git a/Source/Meadow.Foundation.Core/Leds/RgbPwmLed.cs b/Source/Meadow.Foundation.Core/Leds/RgbPwmLed.cs index 8db8ca2926..122ddd87a4 100644 --- a/Source/Meadow.Foundation.Core/Leds/RgbPwmLed.cs +++ b/Source/Meadow.Foundation.Core/Leds/RgbPwmLed.cs @@ -412,8 +412,6 @@ public void StartPulse(Color color, float highBrightness = 1, float lowBrightnes /// public void StartPulse(Color color, TimeSpan pulseDuration, float highBrightness = 1, float lowBrightness = 0.15F) { - pulseDuration = TimeSpan.FromMilliseconds(600); - if (highBrightness > 1 || highBrightness <= 0) { throw new ArgumentOutOfRangeException(nameof(highBrightness), "onBrightness must be > 0 and <= 1");