using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using Crestron.SimplSharpPro; using Crestron.SimplSharpPro.DeviceSupport; using PepperDash.Core; using PepperDash.Essentials.Core.Config; using PepperDash.Essentials.Core.Bridges; using Newtonsoft.Json; using Serilog.Events; namespace PepperDash.Essentials.Core.CrestronIO { /// /// Represents a generic digital input deviced tied to a versiport /// public class GenericVersiportAnalogInputDevice : EssentialsBridgeableDevice, IAnalogInput { public Versiport InputPort { get; private set; } public IntFeedback InputValueFeedback { get; private set; } public IntFeedback InputMinimumChangeFeedback { get; private set; } Func InputValueFeedbackFunc { get { return () => InputPort.AnalogIn; } } Func InputMinimumChangeFeedbackFunc { get { return () => InputPort.AnalogMinChange; } } public GenericVersiportAnalogInputDevice(string key, string name, Func postActivationFunc, IOPortConfig config) : base(key, name) { InputValueFeedback = new IntFeedback(InputValueFeedbackFunc); InputMinimumChangeFeedback = new IntFeedback(InputMinimumChangeFeedbackFunc); AddPostActivationAction(() => { InputPort = postActivationFunc(config); InputPort.Register(); InputPort.SetVersiportConfiguration(eVersiportConfiguration.AnalogInput); InputPort.AnalogMinChange = (ushort)(config.MinimumChange > 0 ? config.MinimumChange : 655); if (config.DisablePullUpResistor) InputPort.DisablePullUpResistor = true; InputPort.VersiportChange += InputPort_VersiportChange; Debug.LogMessage(LogEventLevel.Debug, this, "Created GenericVersiportAnalogInputDevice on port '{0}'. DisablePullUpResistor: '{1}'", config.PortNumber, InputPort.DisablePullUpResistor); }); } /// /// Set minimum voltage change for device to update voltage changed method /// /// valid values range from 0 - 65535, representing the full 100% range of the processor voltage source. Check processor documentation for details public void SetMinimumChange(ushort value) { InputPort.AnalogMinChange = value; } void InputPort_VersiportChange(Versiport port, VersiportEventArgs args) { Debug.LogMessage(LogEventLevel.Debug, this, "Versiport change: {0}", args.Event); if(args.Event == eVersiportEvent.AnalogInChange) InputValueFeedback.FireUpdate(); if (args.Event == eVersiportEvent.AnalogMinChangeChange) InputMinimumChangeFeedback.FireUpdate(); } #region Bridge Linking public override void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey, EiscApiAdvanced bridge) { var joinMap = new IAnalogInputJoinMap(joinStart); var joinMapSerialized = JoinMapHelper.GetSerializedJoinMapForDevice(joinMapKey); if (!string.IsNullOrEmpty(joinMapSerialized)) joinMap = JsonConvert.DeserializeObject(joinMapSerialized); if (bridge != null) { bridge.AddJoinMap(Key, joinMap); } else { Debug.LogMessage(LogEventLevel.Information, this, "Please update config to use 'eiscapiadvanced' to get all join map features for this device."); } try { Debug.LogMessage(LogEventLevel.Debug, this, "Linking to Trilist '{0}'", trilist.ID.ToString("X")); // Link feedback for input state InputValueFeedback.LinkInputSig(trilist.UShortInput[joinMap.InputValue.JoinNumber]); InputMinimumChangeFeedback.LinkInputSig(trilist.UShortInput[joinMap.MinimumChange.JoinNumber]); trilist.SetUShortSigAction(joinMap.MinimumChange.JoinNumber, SetMinimumChange); } catch (Exception e) { Debug.LogMessage(LogEventLevel.Debug, this, "Unable to link device '{0}'. Input is null", Key); Debug.LogMessage(LogEventLevel.Debug, this, "Error: {0}", e); } trilist.OnlineStatusChange += (d, args) => { if (!args.DeviceOnLine) return; InputValueFeedback.FireUpdate(); InputMinimumChangeFeedback.FireUpdate(); }; } void trilist_OnlineStatusChange(GenericBase currentDevice, OnlineOfflineEventArgs args) { throw new NotImplementedException(); } #endregion public static Versiport GetVersiportDigitalInput(IOPortConfig dc) { IIOPorts ioPortDevice; if (dc.PortDeviceKey.Equals("processor")) { if (!Global.ControlSystem.SupportsVersiport) { Debug.LogMessage(LogEventLevel.Information, "GetVersiportAnalogInput: Processor does not support Versiports"); return null; } ioPortDevice = Global.ControlSystem; } else { var ioPortDev = DeviceManager.GetDeviceForKey(dc.PortDeviceKey) as IIOPorts; if (ioPortDev == null) { Debug.LogMessage(LogEventLevel.Information, "GetVersiportAnalogInput: Device {0} is not a valid device", dc.PortDeviceKey); return null; } ioPortDevice = ioPortDev; } if (ioPortDevice == null) { Debug.LogMessage(LogEventLevel.Information, "GetVersiportAnalogInput: Device '0' is not a valid IIOPorts Device", dc.PortDeviceKey); return null; } if (dc.PortNumber > ioPortDevice.NumberOfVersiPorts) { Debug.LogMessage(LogEventLevel.Information, "GetVersiportAnalogInput: Device {0} does not contain a port {1}", dc.PortDeviceKey, dc.PortNumber); return null; } if(!ioPortDevice.VersiPorts[dc.PortNumber].SupportsAnalogInput) { Debug.LogMessage(LogEventLevel.Information, "GetVersiportAnalogInput: Device {0} does not support AnalogInput on port {1}", dc.PortDeviceKey, dc.PortNumber); return null; } return ioPortDevice.VersiPorts[dc.PortNumber]; } } public class GenericVersiportAbalogInputDeviceFactory : EssentialsDeviceFactory { public GenericVersiportAbalogInputDeviceFactory() { TypeNames = new List() { "versiportanaloginput" }; } public override EssentialsDevice BuildDevice(DeviceConfig dc) { Debug.LogMessage(LogEventLevel.Debug, "Factory Attempting to create new Generic Versiport Device"); var props = JsonConvert.DeserializeObject(dc.Properties.ToString()); if (props == null) return null; var portDevice = new GenericVersiportAnalogInputDevice(dc.Key, dc.Name, GenericVersiportAnalogInputDevice.GetVersiportDigitalInput, props); return portDevice; } } }