Updated warmup timer for SamsungMDC back to 10s

This commit is contained in:
Neil Dorin
2017-11-01 10:30:42 -06:00
parent 2a485e36c8
commit 43c3b83637
3 changed files with 4 additions and 1 deletions

View File

@@ -87,7 +87,7 @@ namespace PepperDash.Essentials.Devices.Displays
void Init()
{
WarmupTime = 12000;
WarmupTime = 10000;
CooldownTime = 8000;
CommunicationMonitor = new GenericCommunicationMonitor(this, Communication, 2000, 120000, 300000, StatusGet);
@@ -166,6 +166,9 @@ namespace PepperDash.Essentials.Devices.Displays
IncomingBuffer.CopyTo(newBytes, 0);
e.Bytes.CopyTo(newBytes, IncomingBuffer.Length);
if (Debug.Level == 2) // This check is here to prevent following string format from building unnecessarily on level 0 or 1
Debug.Console(2, this, "Received:{0}", ComTextHelper.GetEscapedText(newBytes));
// Need to find AA FF and have
for (int i = 0; i < newBytes.Length; i++)
{