mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
feat: changes access modifiers to public on SystemMonitorController methods
This commit is contained in:
parent
6e05653c6c
commit
b876b8123d
1 changed files with 3 additions and 3 deletions
|
|
@ -110,7 +110,7 @@ namespace PepperDash.Essentials.Core.Monitoring
|
|||
_uptimePollTimer = null;
|
||||
}
|
||||
|
||||
private void PollUptime(object obj)
|
||||
public void PollUptime(object obj)
|
||||
{
|
||||
var consoleResponse = string.Empty;
|
||||
|
||||
|
|
@ -142,7 +142,7 @@ namespace PepperDash.Essentials.Core.Monitoring
|
|||
_uptime = uptimeRaw.Substring(forIndex + 4);
|
||||
}
|
||||
|
||||
private static void ProcessorReboot()
|
||||
public static void ProcessorReboot()
|
||||
{
|
||||
if (CrestronEnvironment.DevicePlatform == eDevicePlatform.Server) return;
|
||||
|
||||
|
|
@ -150,7 +150,7 @@ namespace PepperDash.Essentials.Core.Monitoring
|
|||
CrestronConsole.SendControlSystemCommand("reboot", ref response);
|
||||
}
|
||||
|
||||
private static void ProgramReset(uint index)
|
||||
public static void ProgramReset(uint index)
|
||||
{
|
||||
if (CrestronEnvironment.DevicePlatform == eDevicePlatform.Server) return;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue