mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-14 21:16:48 +00:00
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:
parent
260677a37f
commit
7987eb8f9b
485 changed files with 8099 additions and 2490 deletions
|
|
@ -47,7 +47,7 @@ namespace PepperDash.Essentials.Core
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Starts incrementing cycle
|
||||
/// StartUp method
|
||||
/// </summary>
|
||||
public void StartUp()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,6 +6,9 @@ using Crestron.SimplSharp;
|
|||
|
||||
namespace PepperDash.Essentials.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a NumericalHelpers
|
||||
/// </summary>
|
||||
public class NumericalHelpers
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue