mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 03:05:01 +00:00
131 lines
4.1 KiB
C#
131 lines
4.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Core.Config;
|
|
using PepperDash.Essentials.Core.CrestronIO;
|
|
using PepperDash.Essentials.Core.Shades;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Environment.Somfy
|
|
{
|
|
/// <summary>
|
|
/// Controls a single shade using three relays
|
|
/// </summary>
|
|
public class RelayControlledShade : ShadeBase, IShadesOpenCloseStop
|
|
{
|
|
RelayControlledShadeConfigProperties Config;
|
|
|
|
ISwitchedOutput OpenRelay;
|
|
ISwitchedOutput StopOrPresetRelay;
|
|
ISwitchedOutput CloseRelay;
|
|
|
|
int RelayPulseTime;
|
|
|
|
public string StopOrPresetButtonLabel { get; set; }
|
|
|
|
public RelayControlledShade(string key, string name, RelayControlledShadeConfigProperties config)
|
|
: base(key, name)
|
|
{
|
|
Config = config;
|
|
|
|
RelayPulseTime = Config.RelayPulseTime;
|
|
|
|
StopOrPresetButtonLabel = Config.StopOrPresetLabel;
|
|
|
|
}
|
|
|
|
public override bool CustomActivate()
|
|
{
|
|
//Create ISwitchedOutput objects based on props
|
|
OpenRelay = GetSwitchedOutputFromDevice(Config.Relays.Open);
|
|
StopOrPresetRelay = GetSwitchedOutputFromDevice(Config.Relays.StopOrPreset);
|
|
CloseRelay = GetSwitchedOutputFromDevice(Config.Relays.Close);
|
|
|
|
|
|
return base.CustomActivate();
|
|
}
|
|
|
|
public override void Open()
|
|
{
|
|
Debug.Console(1, this, "Opening Shade: '{0}'", this.Name);
|
|
|
|
PulseOutput(OpenRelay, RelayPulseTime);
|
|
}
|
|
|
|
public override void Stop()
|
|
{
|
|
Debug.Console(1, this, "Stopping Shade: '{0}'", this.Name);
|
|
|
|
PulseOutput(StopOrPresetRelay, RelayPulseTime);
|
|
}
|
|
|
|
public override void Close()
|
|
{
|
|
Debug.Console(1, this, "Closing Shade: '{0}'", this.Name);
|
|
|
|
PulseOutput(CloseRelay, RelayPulseTime);
|
|
}
|
|
|
|
void PulseOutput(ISwitchedOutput output, int pulseTime)
|
|
{
|
|
output.On();
|
|
CTimer pulseTimer = new CTimer(new CTimerCallbackFunction((o) => output.Off()), pulseTime);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Attempts to get the port on teh specified device from config
|
|
/// </summary>
|
|
/// <param name="relayConfig"></param>
|
|
/// <returns></returns>
|
|
ISwitchedOutput GetSwitchedOutputFromDevice(IOPortConfig relayConfig)
|
|
{
|
|
var portDevice = DeviceManager.GetDeviceForKey(relayConfig.PortDeviceKey);
|
|
|
|
if (portDevice != null)
|
|
{
|
|
return (portDevice as ISwitchedOutputCollection).SwitchedOutputs[relayConfig.PortNumber];
|
|
}
|
|
else
|
|
{
|
|
Debug.Console(1, this, "Error: Unable to get relay on port '{0}' from device with key '{1}'", relayConfig.PortNumber, relayConfig.PortDeviceKey);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
public class RelayControlledShadeConfigProperties
|
|
{
|
|
public int RelayPulseTime { get; set; }
|
|
public ShadeRelaysConfig Relays { get; set; }
|
|
public string StopOrPresetLabel { get; set; }
|
|
|
|
public class ShadeRelaysConfig
|
|
{
|
|
public IOPortConfig Open { get; set; }
|
|
public IOPortConfig StopOrPreset { get; set; }
|
|
public IOPortConfig Close { get; set; }
|
|
}
|
|
}
|
|
|
|
public class RelayControlledShadeFactory : EssentialsDeviceFactory<RelayControlledShade>
|
|
{
|
|
public RelayControlledShadeFactory()
|
|
{
|
|
TypeNames = new List<string>() { "relaycontrolledshade" };
|
|
}
|
|
|
|
public override EssentialsDevice BuildDevice(DeviceConfig dc)
|
|
{
|
|
Debug.Console(1, "Factory Attempting to create new Generic Comm Device");
|
|
var props = Newtonsoft.Json.JsonConvert.DeserializeObject<Environment.Somfy.RelayControlledShadeConfigProperties>(dc.Properties.ToString());
|
|
|
|
return new Environment.Somfy.RelayControlledShade(dc.Key, dc.Name, props);
|
|
}
|
|
}
|
|
|
|
} |