diff --git a/Essentials Devices Common/Essentials Devices Common/Display/SamsungMDCDisplay.cs b/Essentials Devices Common/Essentials Devices Common/Display/SamsungMDCDisplay.cs index a684bdda..e6a125bf 100644 --- a/Essentials Devices Common/Essentials Devices Common/Display/SamsungMDCDisplay.cs +++ b/Essentials Devices Common/Essentials Devices Common/Display/SamsungMDCDisplay.cs @@ -244,12 +244,12 @@ namespace PepperDash.Essentials.Devices.Displays /// /// Updates power status from general updates where source is included. /// Compensates for errant standby / power off hiccups by ignoring - /// power off states with input 03 + /// power off states with input < 0x10 /// void UpdatePowerFB(byte powerByte, byte inputByte) { // This should reject errant power feedbacks when switching away from input on standby. - if (powerByte == 0x00 && inputByte == 0x03) + if (powerByte == 0x00 && inputByte < 0x10) return; UpdatePowerFB(powerByte); } diff --git a/Release Package/PepperDashEssentials.cpz b/Release Package/PepperDashEssentials.cpz index fe8047d6..88d2a896 100644 Binary files a/Release Package/PepperDashEssentials.cpz and b/Release Package/PepperDashEssentials.cpz differ diff --git a/Release Package/PepperDashEssentials.dll b/Release Package/PepperDashEssentials.dll index 3c4f6035..3167386e 100644 Binary files a/Release Package/PepperDashEssentials.dll and b/Release Package/PepperDashEssentials.dll differ