docs: complete XML documentation for all projects with inheritdoc tags

Co-authored-by: andrew-welker <1765622+andrew-welker@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-07-22 15:53:01 +00:00
parent 260677a37f
commit 7987eb8f9b
485 changed files with 8099 additions and 2490 deletions

View File

@@ -47,7 +47,7 @@ namespace PepperDash.Essentials.Core
}
/// <summary>
/// Starts incrementing cycle
/// StartUp method
/// </summary>
public void StartUp()
{

View File

@@ -6,6 +6,9 @@ using Crestron.SimplSharp;
namespace PepperDash.Essentials.Core
{
/// <summary>
/// Represents a NumericalHelpers
/// </summary>
public class NumericalHelpers
{
/// <summary>

View File

@@ -37,12 +37,18 @@ namespace PepperDash.Essentials.Core
Debug.LogMessage(LogEventLevel.Debug, "UshortSigIncrementer has signed values that exceed range of -32768, 32767");
}
/// <summary>
/// StartUp method
/// </summary>
public void StartUp()
{
if (Timer != null) return;
Go(ChangeAmount);
}
/// <summary>
/// StartDown method
/// </summary>
public void StartDown()
{
if (Timer != null) return;
@@ -85,6 +91,9 @@ namespace PepperDash.Essentials.Core
return IsAtLimit;
}
/// <summary>
/// Stop method
/// </summary>
public void Stop()
{
if (Timer != null)