using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using PepperDash.Essentials.Core; namespace PepperDash.Essentials.Core.CrestronIO { /// /// Defines the contract for IAnalogInput /// public interface IAnalogInput { /// /// Get the InputValueFeedback. /// /// /// Updates when the analog input value changes /// IntFeedback InputValueFeedback { get; } } }