esc-337, found errant timer resets on comm monitor and Sammy display

This commit is contained in:
Heath Volmer
2017-08-16 15:26:46 -06:00
parent 17b0373c73
commit 85683ea9fa
11 changed files with 22 additions and 17 deletions

View File

@@ -102,17 +102,12 @@ namespace PepperDash.Essentials.Core
ErrorTimer = null;
}
public void ResetErrorTimers()
protected void ResetErrorTimers()
{
if(WarningTimer != null)
WarningTimer.Reset(WarningTime, WarningTime);
if(ErrorTimer != null)
ErrorTimer.Reset(ErrorTime, ErrorTime);
}
public void PrintStatus()
{
CrestronConsole.PrintLine("Status={0}", Status);
}
}
}