mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
Starts on interfaces for room combination
This commit is contained in:
parent
d97ca6d5a4
commit
06a3dda2e4
5 changed files with 87 additions and 7 deletions
|
|
@ -4,13 +4,24 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using Crestron.SimplSharp;
|
||||
|
||||
using PepperDash.Core;
|
||||
|
||||
namespace PepperDash.Essentials.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Describes the functionality of a device that senses and provides partition state
|
||||
/// </summary>
|
||||
public interface IPartitionStateProvider
|
||||
public interface IPartitionStateProvider : IKeyName
|
||||
{
|
||||
BoolFeedback PartitionSensedFeedback { get; }
|
||||
}
|
||||
|
||||
public interface IManualPartitionSensor : IPartitionStateProvider
|
||||
{
|
||||
void SetPartitionStatePresent();
|
||||
|
||||
void SetPartitionStateNotPresent();
|
||||
|
||||
void ToggglePartitionState();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue