using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using PepperDash.Core; namespace PepperDash.Essentials.Core { /// /// Describes the functionality of a device that senses and provides partition state /// public interface IPartitionStateProvider : IKeyName { BoolFeedback PartitionPresentFeedback { get; } } /// /// Describes the functionality of a device that can provide partition state either manually via user input or optionally via a sensor state /// public interface IPartitionController : IPartitionStateProvider { List AdjacentRoomKeys { get; } void SetPartitionStatePresent(); void SetPartitionStateNotPresent(); void ToggglePartitionState(); void SetManualMode(); void SetAutoMode(); } }