mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
31 lines
673 B
C#
31 lines
673 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core.CrestronIO;
|
|
|
|
namespace PepperDash.Essentials.Core.Shades
|
|
{
|
|
/// <summary>
|
|
/// Base class for a shade device
|
|
/// </summary>
|
|
public abstract class ShadeBase : EssentialsDevice, IShadesOpenCloseStop
|
|
{
|
|
public ShadeBase(string key, string name)
|
|
: base(key, name)
|
|
{
|
|
|
|
}
|
|
|
|
#region iShadesOpenClose Members
|
|
|
|
public abstract void Open();
|
|
public abstract void Stop();
|
|
public abstract void Close();
|
|
|
|
#endregion
|
|
}
|
|
} |