mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-07 08:45:06 +00:00
30 lines
694 B
C#
30 lines
694 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
|
|
{
|
|
|
|
[Obsolete("Please use PepperDash.Essentials.Devices.Common, this will be removed in 2.1")]
|
|
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
|
|
}
|
|
} |