diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Gateways/CenCn2Controller.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Gateways/CenCn2Controller.cs new file mode 100644 index 00000000..bdd53bde --- /dev/null +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Gateways/CenCn2Controller.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using Crestron.SimplSharp; + +namespace PepperDash_Essentials_Core.Gateways +{ + public class CenCn2Controller + { + } +} \ No newline at end of file diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDsp.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDsp.cs index 9cce66f0..2af9586e 100644 --- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDsp.cs +++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/DSP/BiampTesira/BiampTesiraForteDsp.cs @@ -305,26 +305,6 @@ namespace PepperDash.Essentials.Devices.Common.DSP SendNextQueuedCommand(); } - public void RecallPreset(IDspPreset preset) - { - if (preset == null) return; - - var tesiraPreset = preset as TesiraDspPreset; - - if (tesiraPreset == null) return; - if (!String.IsNullOrEmpty(tesiraPreset.PresetName)) - { - SendLine(String.Format("Device RecallPreset {0}", tesiraPreset.PresetName)); - } - if (tesiraPreset.PresetId >= 1000) - { - SendLine(String.Format("Device RecallPreset {0}", tesiraPreset.PresetId)); - } - else - { - Debug.Console(0, this, "Preset {0} unable to be recalled, missing identifier", tesiraPreset.Name); - } - } /// /// Adds a raw string command to the queue @@ -420,12 +400,4 @@ namespace PepperDash.Essentials.Devices.Common.DSP } } - public class TesiraDspPreset : IDspPreset - { - public string Name { get; set; } - public readonly string PresetName; - public readonly int PresetId; - - } - } diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/DSP/DspBase.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/DSP/DspBase.cs index e8e38598..0890ca49 100644 --- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/DSP/DspBase.cs +++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/DSP/DspBase.cs @@ -9,7 +9,7 @@ using PepperDash.Essentials.Core; namespace PepperDash.Essentials.Devices.Common.DSP { - public abstract class DspBase : EssentialsDevice, IHasDspPresets + public abstract class DspBase : EssentialsDevice { public Dictionary LevelControlPoints { get; private set; } @@ -20,7 +20,6 @@ namespace PepperDash.Essentials.Devices.Common.DSP public DspBase(string key, string name) : base(key, name) { - Presets = new List(); } @@ -29,14 +28,6 @@ namespace PepperDash.Essentials.Devices.Common.DSP // VOIP // Phone dialer - - public List Presets { get; set; } - - - public void RecallPreset(IDspPreset preset) - { - } - } // Fusion