Files
Essentials/essentials-framework/Essentials Devices Common/Essentials Devices Common/DSP/DspBase.cs
Andrew Welker fcb2f88be7 moving interfaces and base classes into Core from Devices Common
maybe too far down the rabbit hole?
2020-11-18 15:07:55 -07:00

60 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using PepperDash.Essentials.Core.Devices.Codec;
using PepperDash.Core;
using PepperDash.Essentials.Core;
namespace PepperDash.Essentials.Devices.Common.DSP
{
public abstract class DspBase : EssentialsDevice
{
public Dictionary<string, DspControlPoint> LevelControlPoints { get; private set; }
public Dictionary<string, DspControlPoint> DialerControlPoints { get; private set; }
public Dictionary<string, DspControlPoint> SwitcherControlPoints { get; private set; }
public DspBase(string key, string name) :
base(key, name)
{
}
// in audio call feedback
// VOIP
// Phone dialer
}
// Fusion
// Privacy state
// Online state
// level/mutes ?
// AC Log call stats
// Typical presets:
// call default preset to restore levels and mutes
public abstract class DspControlPoint
{
string Key { get; set; }
}
public class DspDialerBase
{
}
// Main program
// VTC
// ATC
// Mics, unusual
}