diff --git a/RGB.NET.Devices.WLED/Generic/WLedRGBDevice.cs b/RGB.NET.Devices.WLED/Generic/WLedRGBDevice.cs index 080b246..8178732 100644 --- a/RGB.NET.Devices.WLED/Generic/WLedRGBDevice.cs +++ b/RGB.NET.Devices.WLED/Generic/WLedRGBDevice.cs @@ -18,6 +18,8 @@ public sealed class WledRGBDevice : AbstractRGBDevice, IWledR : base(info, new WledDeviceUpdateQueue(updateTrigger, address, info.Info.UDPPort, info.Info.Leds.Count)) { InitializeLayout(); + + RequiresFlush = true; } #endregion diff --git a/RGB.NET.Devices.WLED/WLedDeviceProvider.cs b/RGB.NET.Devices.WLED/WLedDeviceProvider.cs index edb53c0..978565e 100644 --- a/RGB.NET.Devices.WLED/WLedDeviceProvider.cs +++ b/RGB.NET.Devices.WLED/WLedDeviceProvider.cs @@ -16,7 +16,7 @@ public sealed class WledDeviceProvider : AbstractRGBDeviceProvider { #region Constants - private const int HEARTBEAT_TIMER = 1000; + private const int HEARTBEAT_TIMER = 250; #endregion