diff --git a/PepperDashEssentials/Room/Types/EssentialsHuddleSpaceRoom.cs b/PepperDashEssentials/Room/Types/EssentialsHuddleSpaceRoom.cs
index 9bec05b8..b14e563d 100644
--- a/PepperDashEssentials/Room/Types/EssentialsHuddleSpaceRoom.cs
+++ b/PepperDashEssentials/Room/Types/EssentialsHuddleSpaceRoom.cs
@@ -264,8 +264,30 @@ namespace PepperDash.Essentials
///
public void RunRouteAction(string routeKey)
{
- RunRouteAction(routeKey, null);
- }
+ RunRouteAction(routeKey, new Action(() => { }));
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public void RunRouteAction(string routeKey, string souceListKey)
+ {
+ throw new NotImplementedException();
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public void RunRouteAction(string routeKey, string souceListKey, Action successCallback)
+ {
+ throw new NotImplementedException();
+ }
///
/// Gets a source from config list SourceListKey and dynamically build and executes the
diff --git a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs
index b2db56ae..c5021526 100644
--- a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs
+++ b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs
@@ -394,8 +394,30 @@ namespace PepperDash.Essentials
///
public void RunRouteAction(string routeKey)
{
- RunRouteAction(routeKey, null);
- }
+ RunRouteAction(routeKey, new Action(() => { }));
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public void RunRouteAction(string routeKey, string souceListKey)
+ {
+ throw new NotImplementedException();
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public void RunRouteAction(string routeKey, string souceListKey, Action successCallback)
+ {
+ throw new NotImplementedException();
+ }
///
/// Gets a source from config list SourceListKey and dynamically build and executes the
diff --git a/PepperDashEssentials/UIDrivers/EssentialsHuddle/EssentialsHuddlePanelAvFunctionsDriver.cs b/PepperDashEssentials/UIDrivers/EssentialsHuddle/EssentialsHuddlePanelAvFunctionsDriver.cs
index 144fafb4..232a99da 100644
--- a/PepperDashEssentials/UIDrivers/EssentialsHuddle/EssentialsHuddlePanelAvFunctionsDriver.cs
+++ b/PepperDashEssentials/UIDrivers/EssentialsHuddle/EssentialsHuddlePanelAvFunctionsDriver.cs
@@ -564,7 +564,7 @@ namespace PepperDash.Essentials
void UiSelectSource(string key)
{
// Run the route and when it calls back, show the source
- CurrentRoom.RunRouteAction(key, null);
+ CurrentRoom.RunRouteAction(key, new Action(() => { }));
}
///
diff --git a/PepperDashEssentials/UIDrivers/EssentialsHuddleVTC/EssentialsHuddleVtc1PanelAvFunctionsDriver.cs b/PepperDashEssentials/UIDrivers/EssentialsHuddleVTC/EssentialsHuddleVtc1PanelAvFunctionsDriver.cs
index fbc3f5b6..9248e50a 100644
--- a/PepperDashEssentials/UIDrivers/EssentialsHuddleVTC/EssentialsHuddleVtc1PanelAvFunctionsDriver.cs
+++ b/PepperDashEssentials/UIDrivers/EssentialsHuddleVTC/EssentialsHuddleVtc1PanelAvFunctionsDriver.cs
@@ -726,7 +726,7 @@ namespace PepperDash.Essentials
void UiSelectSource(string key)
{
// Run the route and when it calls back, show the source
- CurrentRoom.RunRouteAction(key, null);
+ CurrentRoom.RunRouteAction(key, new Action(() => { }));
}
///
diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/JoinMaps/JoinMapBase.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/JoinMaps/JoinMapBase.cs
index 3415abd2..dcdd7c8a 100644
--- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/JoinMaps/JoinMapBase.cs
+++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/JoinMaps/JoinMapBase.cs
@@ -163,7 +163,7 @@ namespace PepperDash.Essentials.Core
/// A label for the join to better describe it's usage
///
[JsonProperty("label")]
- public string Label { get; protected set; }
+ public string Label { get; set; }
///
/// Signal type(s)
///
@@ -183,12 +183,12 @@ namespace PepperDash.Essentials.Core
/// Indicates whether the join is read and/or write
///
[JsonProperty("joinCapabilities")]
- public eJoinCapabilities JoinCapabilities { get; protected set; }
+ public eJoinCapabilities JoinCapabilities { get; set; }
///
/// Indicates a set of valid values (particularly if this translates to an enum
///
[JsonProperty("validValues")]
- public string[] ValidValues { get; protected set; }
+ public string[] ValidValues { get; set; }
}
}
\ No newline at end of file
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 318268f1..0f572642 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
@@ -56,19 +56,4 @@ namespace PepperDash.Essentials.Devices.Common.DSP
// ATC
// Mics, unusual
- public interface IBiampTesiraDspLevelControl : IBasicVolumeWithFeedback
- {
- ///
- /// In BiAmp: Instance Tag, QSC: Named Control, Polycom:
- ///
- string ControlPointTag { get; }
- int Index1 { get; }
- int Index2 { get; }
- bool HasMute { get; }
- bool HasLevel { get; }
- bool AutomaticUnmuteOnVolumeUp { get; }
- }
-
-
-
}
\ No newline at end of file