mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
docs: update XML comments for Essentials Core
This commit is contained in:
parent
0764685c51
commit
f88bb13367
260 changed files with 7018 additions and 1318 deletions
|
|
@ -14,10 +14,16 @@ namespace PepperDash.Essentials.Core
|
|||
{
|
||||
private IPartitionStateProvider _partitionSensor;
|
||||
|
||||
/// <summary>
|
||||
/// Indicates whether the controller is in Auto mode or Manual mode
|
||||
/// </summary>
|
||||
public bool IsInAutoMode { get; private set; }
|
||||
|
||||
private bool _partitionPresent;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the PartitionPresent state
|
||||
/// </summary>
|
||||
public bool PartitionPresent
|
||||
{
|
||||
get
|
||||
|
|
@ -45,6 +51,14 @@ namespace PepperDash.Essentials.Core
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
/// <param name="key">key for the partition controller</param>
|
||||
/// <param name="name">name of the partition controller</param>
|
||||
/// <param name="sensor">partition state provider sensor</param>
|
||||
/// <param name="defaultToManualMode">whether to default to manual mode</param>
|
||||
/// <param name="adjacentRoomKeys">list of adjacent room keys</param>
|
||||
public EssentialsPartitionController(string key, string name, IPartitionStateProvider sensor, bool defaultToManualMode, List<string> adjacentRoomKeys)
|
||||
{
|
||||
Key = key;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue