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
|
|
@ -23,6 +23,9 @@ namespace PepperDash.Essentials.Core.Privacy
|
|||
|
||||
bool initialized;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets whether LED control is enabled
|
||||
/// </summary>
|
||||
public bool EnableLeds
|
||||
{
|
||||
get
|
||||
|
|
@ -69,6 +72,11 @@ namespace PepperDash.Essentials.Core.Privacy
|
|||
/// </summary>
|
||||
public IPrivacy PrivacyDevice { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Constructor for MicrophonePrivacyController
|
||||
/// </summary>
|
||||
/// <param name="key">key of the controller device</param>
|
||||
/// <param name="config">configuration for the controller device</param>
|
||||
public MicrophonePrivacyController(string key, MicrophonePrivacyControllerConfig config) :
|
||||
base(key)
|
||||
{
|
||||
|
|
@ -264,6 +272,9 @@ namespace PepperDash.Essentials.Core.Privacy
|
|||
/// </summary>
|
||||
public class MicrophonePrivacyControllerFactory : EssentialsDeviceFactory<MicrophonePrivacyController>
|
||||
{
|
||||
/// <summary>
|
||||
/// Constructor for MicrophonePrivacyControllerFactory
|
||||
/// </summary>
|
||||
public MicrophonePrivacyControllerFactory()
|
||||
{
|
||||
TypeNames = new List<string>() { "microphoneprivacycontroller" };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue