docs: add XML comments for IAnalogInput

This commit is contained in:
Andrew Welker
2025-09-25 09:46:03 -05:00
parent 278408a3bc
commit d9ef8a2289

View File

@@ -12,6 +12,12 @@ namespace PepperDash.Essentials.Core.CrestronIO
/// </summary>
public interface IAnalogInput
{
/// <summary>
/// Get the InputValueFeedback.
/// </summary>
/// <remarks>
/// Updates when the analog input value changes
/// </remarks>
IntFeedback InputValueFeedback { get; }
}
}