mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
Merge branch 'development' into bugfix/countdownTimer-fixes
This commit is contained in:
@@ -13,7 +13,7 @@ using PepperDash.Essentials.Room.Config;
|
|||||||
using PepperDash.Essentials.Devices.Common.Codec;
|
using PepperDash.Essentials.Devices.Common.Codec;
|
||||||
using PepperDash.Essentials.Devices.Common.VideoCodec;
|
using PepperDash.Essentials.Devices.Common.VideoCodec;
|
||||||
using PepperDash.Essentials.Devices.Common.AudioCodec;
|
using PepperDash.Essentials.Devices.Common.AudioCodec;
|
||||||
using PepperDash_Essentials_Core.DeviceTypeInterfaces;
|
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
|
||||||
|
|
||||||
namespace PepperDash.Essentials
|
namespace PepperDash.Essentials
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using PepperDash.Essentials.Core;
|
using PepperDash.Essentials.Core;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
namespace PepperDash.Essentials.Core.Bridges.JoinMaps
|
||||||
{
|
{
|
||||||
public class GlsPartitionSensorJoinMap : JoinMapBaseAdvanced
|
public class GlsPartitionSensorJoinMap : JoinMapBaseAdvanced
|
||||||
{
|
{
|
||||||
@@ -122,7 +122,7 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="joinStart">Join this join map will start at</param>
|
/// <param name="joinStart">Join this join map will start at</param>
|
||||||
public GlsPartitionSensorJoinMap(uint joinStart)
|
public GlsPartitionSensorJoinMap(uint joinStart)
|
||||||
: this(joinStart, typeof (GlsPartitionSensorJoinMap))
|
: this(joinStart, typeof(GlsPartitionSensorJoinMap))
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -139,3 +139,23 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
[Obsolete("use PepperDash.Essentials.Core.Bridges.JoinMaps version")]
|
||||||
|
public class GlsPartitionSensorJoinMap : PepperDash.Essentials.Core.Bridges.JoinMaps.GlsPartitionSensorJoinMap
|
||||||
|
{
|
||||||
|
public GlsPartitionSensorJoinMap(uint joinStart)
|
||||||
|
: this(joinStart, typeof(GlsPartitionSensorJoinMap))
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected GlsPartitionSensorJoinMap(uint joinStart, Type type) : base(joinStart, type)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
using System;
|
using System;
|
||||||
using PepperDash.Essentials.Core;
|
using PepperDash.Essentials.Core;
|
||||||
|
namespace PepperDash.Essentials.Core.Bridges.JoinMaps
|
||||||
namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|
||||||
{
|
{
|
||||||
public class VideoCodecControllerJoinMap : JoinMapBaseAdvanced
|
public class VideoCodecControllerJoinMap : JoinMapBaseAdvanced
|
||||||
{
|
{
|
||||||
#region Status
|
#region Status
|
||||||
|
|
||||||
[JoinName("IsOnline")] public JoinDataComplete IsOnline =
|
[JoinName("IsOnline")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 1, JoinSpan = 1},
|
public JoinDataComplete IsOnline =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 1, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Device is Online",
|
Description = "Device is Online",
|
||||||
@@ -18,8 +18,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
[JoinName("CallDirection")] public JoinDataComplete CallDirection =
|
[JoinName("CallDirection")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 22, JoinSpan = 1},
|
public JoinDataComplete CallDirection =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 22, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Current Call Direction",
|
Description = "Current Call Direction",
|
||||||
@@ -27,8 +28,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraLayout")] public JoinDataComplete CameraLayout =
|
[JoinName("CameraLayout")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 142, JoinSpan = 1},
|
public JoinDataComplete CameraLayout =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 142, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Layout Toggle",
|
Description = "Camera Layout Toggle",
|
||||||
@@ -36,8 +38,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraLayoutStringFb")] public JoinDataComplete CameraLayoutStringFb =
|
[JoinName("CameraLayoutStringFb")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 141, JoinSpan = 1},
|
public JoinDataComplete CameraLayoutStringFb =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 141, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Current Layout Fb",
|
Description = "Current Layout Fb",
|
||||||
@@ -45,8 +48,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Analog
|
JoinType = eJoinType.Analog
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraModeAuto")] public JoinDataComplete CameraModeAuto =
|
[JoinName("CameraModeAuto")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 131, JoinSpan = 1},
|
public JoinDataComplete CameraModeAuto =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 131, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Mode Auto",
|
Description = "Camera Mode Auto",
|
||||||
@@ -54,8 +58,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraModeManual")] public JoinDataComplete CameraModeManual =
|
[JoinName("CameraModeManual")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 132, JoinSpan = 1},
|
public JoinDataComplete CameraModeManual =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 132, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Mode Manual",
|
Description = "Camera Mode Manual",
|
||||||
@@ -63,8 +68,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraModeOff")] public JoinDataComplete CameraModeOff =
|
[JoinName("CameraModeOff")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 133, JoinSpan = 1},
|
public JoinDataComplete CameraModeOff =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 133, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Mode Off",
|
Description = "Camera Mode Off",
|
||||||
@@ -72,8 +78,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraNumberSelect")] public JoinDataComplete CameraNumberSelect =
|
[JoinName("CameraNumberSelect")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 60, JoinSpan = 1},
|
public JoinDataComplete CameraNumberSelect =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 60, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Number Select/FB",
|
Description = "Camera Number Select/FB",
|
||||||
@@ -81,8 +88,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Analog
|
JoinType = eJoinType.Analog
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraPanLeft")] public JoinDataComplete CameraPanLeft =
|
[JoinName("CameraPanLeft")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 113, JoinSpan = 1},
|
public JoinDataComplete CameraPanLeft =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 113, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Pan Left",
|
Description = "Camera Pan Left",
|
||||||
@@ -90,8 +98,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraPanRight")] public JoinDataComplete CameraPanRight =
|
[JoinName("CameraPanRight")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 114, JoinSpan = 1},
|
public JoinDataComplete CameraPanRight =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 114, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Pan Right",
|
Description = "Camera Pan Right",
|
||||||
@@ -99,8 +108,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraPresetNames")] public JoinDataComplete CameraPresetNames =
|
[JoinName("CameraPresetNames")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 121, JoinSpan = 1},
|
public JoinDataComplete CameraPresetNames =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 121, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Preset Names - XSIG, max of 15",
|
Description = "Camera Preset Names - XSIG, max of 15",
|
||||||
@@ -108,8 +118,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraPresetSelect")] public JoinDataComplete CameraPresetSelect =
|
[JoinName("CameraPresetSelect")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 121, JoinSpan = 1},
|
public JoinDataComplete CameraPresetSelect =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 121, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Preset Select",
|
Description = "Camera Preset Select",
|
||||||
@@ -117,8 +128,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Analog
|
JoinType = eJoinType.Analog
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraPresetSave")] public JoinDataComplete CameraPresetSave =
|
[JoinName("CameraPresetSave")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 121, JoinSpan = 1},
|
public JoinDataComplete CameraPresetSave =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 121, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Save Selected Preset",
|
Description = "Save Selected Preset",
|
||||||
@@ -126,8 +138,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraSelfView")] public JoinDataComplete CameraSelfView =
|
[JoinName("CameraSelfView")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 141, JoinSpan = 1},
|
public JoinDataComplete CameraSelfView =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 141, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Self View Toggle/FB",
|
Description = "Camera Self View Toggle/FB",
|
||||||
@@ -135,8 +148,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraSupportsAutoMode")] public JoinDataComplete CameraSupportsAutoMode =
|
[JoinName("CameraSupportsAutoMode")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 143, JoinSpan = 1},
|
public JoinDataComplete CameraSupportsAutoMode =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 143, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Supports Auto Mode FB",
|
Description = "Camera Supports Auto Mode FB",
|
||||||
@@ -144,8 +158,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraSupportsOffMode")] public JoinDataComplete CameraSupportsOffMode =
|
[JoinName("CameraSupportsOffMode")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 144, JoinSpan = 1},
|
public JoinDataComplete CameraSupportsOffMode =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 144, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Supports Off Mode FB",
|
Description = "Camera Supports Off Mode FB",
|
||||||
@@ -153,8 +168,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraTiltDown")] public JoinDataComplete CameraTiltDown =
|
[JoinName("CameraTiltDown")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 112, JoinSpan = 1},
|
public JoinDataComplete CameraTiltDown =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 112, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Tilt Down",
|
Description = "Camera Tilt Down",
|
||||||
@@ -162,8 +178,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraTiltUp")] public JoinDataComplete CameraTiltUp =
|
[JoinName("CameraTiltUp")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 111, JoinSpan = 1},
|
public JoinDataComplete CameraTiltUp =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 111, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Tilt Up",
|
Description = "Camera Tilt Up",
|
||||||
@@ -171,8 +188,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraZoomIn")] public JoinDataComplete CameraZoomIn =
|
[JoinName("CameraZoomIn")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 115, JoinSpan = 1},
|
public JoinDataComplete CameraZoomIn =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 115, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Zoom In",
|
Description = "Camera Zoom In",
|
||||||
@@ -180,8 +198,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CameraZoomOut")] public JoinDataComplete CameraZoomOut =
|
[JoinName("CameraZoomOut")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 116, JoinSpan = 1},
|
public JoinDataComplete CameraZoomOut =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 116, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Camera Zoom Out",
|
Description = "Camera Zoom Out",
|
||||||
@@ -189,8 +208,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CurrentCallName")] public JoinDataComplete CurrentCallData =
|
[JoinName("CurrentCallName")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 2, JoinSpan = 1},
|
public JoinDataComplete CurrentCallData =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 2, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Current Call Data - XSIG",
|
Description = "Current Call Data - XSIG",
|
||||||
@@ -198,8 +218,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CurrentDialString")] public JoinDataComplete CurrentDialString =
|
[JoinName("CurrentDialString")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 1, JoinSpan = 1},
|
public JoinDataComplete CurrentDialString =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 1, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Current Dial String",
|
Description = "Current Dial String",
|
||||||
@@ -207,8 +228,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CurrentParticipants")] public JoinDataComplete CurrentParticipants =
|
[JoinName("CurrentParticipants")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 151, JoinSpan = 1},
|
public JoinDataComplete CurrentParticipants =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 151, JoinSpan = 1 },
|
||||||
new JoinMetadata()
|
new JoinMetadata()
|
||||||
{
|
{
|
||||||
Description = "Current Participants XSig",
|
Description = "Current Participants XSig",
|
||||||
@@ -216,8 +238,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("CurrentSource")] public JoinDataComplete CurrentSource =
|
[JoinName("CurrentSource")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 201, JoinSpan = 1},
|
public JoinDataComplete CurrentSource =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 201, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Current Source",
|
Description = "Current Source",
|
||||||
@@ -225,8 +248,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DialMeeting1")] public JoinDataComplete DialMeeting1 =
|
[JoinName("DialMeeting1")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 161, JoinSpan = 1},
|
public JoinDataComplete DialMeeting1 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 161, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Join first meeting",
|
Description = "Join first meeting",
|
||||||
@@ -254,8 +278,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryDialSelectedLine")] public JoinDataComplete DirectoryDialSelectedLine =
|
[JoinName("DirectoryDialSelectedLine")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 106, JoinSpan = 1},
|
public JoinDataComplete DirectoryDialSelectedLine =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 106, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Dial selected directory line",
|
Description = "Dial selected directory line",
|
||||||
@@ -263,8 +288,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryEntries")] public JoinDataComplete DirectoryEntries =
|
[JoinName("DirectoryEntries")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 101, JoinSpan = 1},
|
public JoinDataComplete DirectoryEntries =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 101, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Directory Entries - XSig, 255 entries",
|
Description = "Directory Entries - XSig, 255 entries",
|
||||||
@@ -272,8 +298,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryEntryIsContact")] public JoinDataComplete DirectoryEntryIsContact =
|
[JoinName("DirectoryEntryIsContact")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 101, JoinSpan = 1},
|
public JoinDataComplete DirectoryEntryIsContact =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 101, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Directory Selected Entry Is Contact FB",
|
Description = "Directory Selected Entry Is Contact FB",
|
||||||
@@ -281,8 +308,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryEntrySelectedName")] public JoinDataComplete DirectoryEntrySelectedName =
|
[JoinName("DirectoryEntrySelectedName")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 356, JoinSpan = 1},
|
public JoinDataComplete DirectoryEntrySelectedName =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 356, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Selected Directory Entry Name",
|
Description = "Selected Directory Entry Name",
|
||||||
@@ -290,8 +318,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryEntrySelectedNumber")] public JoinDataComplete DirectoryEntrySelectedNumber =
|
[JoinName("DirectoryEntrySelectedNumber")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 357, JoinSpan = 1},
|
public JoinDataComplete DirectoryEntrySelectedNumber =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 357, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Selected Directory Entry Number",
|
Description = "Selected Directory Entry Number",
|
||||||
@@ -299,8 +328,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryFolderBack")] public JoinDataComplete DirectoryFolderBack =
|
[JoinName("DirectoryFolderBack")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 105, JoinSpan = 1},
|
public JoinDataComplete DirectoryFolderBack =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 105, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Go back one directory level",
|
Description = "Go back one directory level",
|
||||||
@@ -308,8 +338,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryHasChanged")] public JoinDataComplete DirectoryHasChanged =
|
[JoinName("DirectoryHasChanged")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 103, JoinSpan = 1},
|
public JoinDataComplete DirectoryHasChanged =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 103, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Directory has changed FB",
|
Description = "Directory has changed FB",
|
||||||
@@ -317,8 +348,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryIsRoot")] public JoinDataComplete DirectoryIsRoot =
|
[JoinName("DirectoryIsRoot")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 102, JoinSpan = 1},
|
public JoinDataComplete DirectoryIsRoot =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 102, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Directory is on Root FB",
|
Description = "Directory is on Root FB",
|
||||||
@@ -326,8 +358,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryLineSelected")] public JoinDataComplete DirectoryLineSelected =
|
[JoinName("DirectoryLineSelected")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 101, JoinSpan = 1},
|
public JoinDataComplete DirectoryLineSelected =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 101, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Directory Line Selected FB",
|
Description = "Directory Line Selected FB",
|
||||||
@@ -335,8 +368,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryRoot")] public JoinDataComplete DirectoryRoot =
|
[JoinName("DirectoryRoot")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 104, JoinSpan = 1},
|
public JoinDataComplete DirectoryRoot =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 104, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Go to Directory Root",
|
Description = "Go to Directory Root",
|
||||||
@@ -344,8 +378,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectoryRowCount")] public JoinDataComplete DirectoryRowCount =
|
[JoinName("DirectoryRowCount")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 101, JoinSpan = 1},
|
public JoinDataComplete DirectoryRowCount =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 101, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Directory Row Count FB",
|
Description = "Directory Row Count FB",
|
||||||
@@ -353,8 +388,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Analog
|
JoinType = eJoinType.Analog
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectorySearchBusy")] public JoinDataComplete DirectorySearchBusy =
|
[JoinName("DirectorySearchBusy")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 100, JoinSpan = 1},
|
public JoinDataComplete DirectorySearchBusy =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 100, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Directory Search Busy FB",
|
Description = "Directory Search Busy FB",
|
||||||
@@ -362,8 +398,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectorySearchString")] public JoinDataComplete DirectorySearchString =
|
[JoinName("DirectorySearchString")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 100, JoinSpan = 1},
|
public JoinDataComplete DirectorySearchString =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 100, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Directory Search String",
|
Description = "Directory Search String",
|
||||||
@@ -371,8 +408,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectorySelectRow")] public JoinDataComplete DirectorySelectRow =
|
[JoinName("DirectorySelectRow")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 101, JoinSpan = 1},
|
public JoinDataComplete DirectorySelectRow =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 101, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Directory Select Row",
|
Description = "Directory Select Row",
|
||||||
@@ -380,8 +418,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Analog
|
JoinType = eJoinType.Analog
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("DirectorySelectedFolderName")] public JoinDataComplete DirectorySelectedFolderName =
|
[JoinName("DirectorySelectedFolderName")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 358, JoinSpan = 1},
|
public JoinDataComplete DirectorySelectedFolderName =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 358, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Selected Directory Folder Name",
|
Description = "Selected Directory Folder Name",
|
||||||
@@ -389,8 +428,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("0")] public JoinDataComplete Dtmf0 =
|
[JoinName("0")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 20, JoinSpan = 1},
|
public JoinDataComplete Dtmf0 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 20, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 0",
|
Description = "DTMF 0",
|
||||||
@@ -398,8 +438,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("1")] public JoinDataComplete Dtmf1 =
|
[JoinName("1")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 11, JoinSpan = 1},
|
public JoinDataComplete Dtmf1 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 11, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 1",
|
Description = "DTMF 1",
|
||||||
@@ -407,8 +448,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("2")] public JoinDataComplete Dtmf2 =
|
[JoinName("2")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 12, JoinSpan = 1},
|
public JoinDataComplete Dtmf2 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 12, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 2",
|
Description = "DTMF 2",
|
||||||
@@ -416,8 +458,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("3")] public JoinDataComplete Dtmf3 =
|
[JoinName("3")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 13, JoinSpan = 1},
|
public JoinDataComplete Dtmf3 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 13, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 3",
|
Description = "DTMF 3",
|
||||||
@@ -425,8 +468,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("4")] public JoinDataComplete Dtmf4 =
|
[JoinName("4")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 14, JoinSpan = 1},
|
public JoinDataComplete Dtmf4 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 14, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 4",
|
Description = "DTMF 4",
|
||||||
@@ -434,8 +478,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("5")] public JoinDataComplete Dtmf5 =
|
[JoinName("5")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 15, JoinSpan = 1},
|
public JoinDataComplete Dtmf5 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 15, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 5",
|
Description = "DTMF 5",
|
||||||
@@ -443,8 +488,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("6")] public JoinDataComplete Dtmf6 =
|
[JoinName("6")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 16, JoinSpan = 1},
|
public JoinDataComplete Dtmf6 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 16, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 6",
|
Description = "DTMF 6",
|
||||||
@@ -452,8 +498,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("7")] public JoinDataComplete Dtmf7 =
|
[JoinName("7")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 17, JoinSpan = 1},
|
public JoinDataComplete Dtmf7 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 17, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 7",
|
Description = "DTMF 7",
|
||||||
@@ -461,8 +508,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("8")] public JoinDataComplete Dtmf8 =
|
[JoinName("8")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 18, JoinSpan = 1},
|
public JoinDataComplete Dtmf8 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 18, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 8",
|
Description = "DTMF 8",
|
||||||
@@ -470,8 +518,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("9")] public JoinDataComplete Dtmf9 =
|
[JoinName("9")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 19, JoinSpan = 1},
|
public JoinDataComplete Dtmf9 =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 19, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF 9",
|
Description = "DTMF 9",
|
||||||
@@ -479,8 +528,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("#")] public JoinDataComplete DtmfPound =
|
[JoinName("#")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 22, JoinSpan = 1},
|
public JoinDataComplete DtmfPound =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 22, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF #",
|
Description = "DTMF #",
|
||||||
@@ -488,8 +538,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("*")] public JoinDataComplete DtmfStar =
|
[JoinName("*")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 21, JoinSpan = 1},
|
public JoinDataComplete DtmfStar =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 21, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "DTMF *",
|
Description = "DTMF *",
|
||||||
@@ -497,8 +548,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("EndCall")] public JoinDataComplete EndCall =
|
[JoinName("EndCall")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 24, JoinSpan = 1},
|
public JoinDataComplete EndCall =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 24, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Hang Up",
|
Description = "Hang Up",
|
||||||
@@ -506,8 +558,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("HookState")] public JoinDataComplete HookState =
|
[JoinName("HookState")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 31, JoinSpan = 1},
|
public JoinDataComplete HookState =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 31, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Current Hook State",
|
Description = "Current Hook State",
|
||||||
@@ -515,8 +568,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("IncomingAnswer")] public JoinDataComplete IncomingAnswer =
|
[JoinName("IncomingAnswer")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 51, JoinSpan = 1},
|
public JoinDataComplete IncomingAnswer =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 51, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Answer Incoming Call",
|
Description = "Answer Incoming Call",
|
||||||
@@ -524,8 +578,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("IncomingCall")] public JoinDataComplete IncomingCall =
|
[JoinName("IncomingCall")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 50, JoinSpan = 1},
|
public JoinDataComplete IncomingCall =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 50, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Incoming Call",
|
Description = "Incoming Call",
|
||||||
@@ -533,8 +588,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("IncomingCallName")] public JoinDataComplete IncomingCallName =
|
[JoinName("IncomingCallName")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 51, JoinSpan = 1},
|
public JoinDataComplete IncomingCallName =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 51, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Incoming Call Name",
|
Description = "Incoming Call Name",
|
||||||
@@ -542,8 +598,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("IncomingCallNumber")] public JoinDataComplete IncomingCallNumber =
|
[JoinName("IncomingCallNumber")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 52, JoinSpan = 1},
|
public JoinDataComplete IncomingCallNumber =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 52, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Incoming Call Number",
|
Description = "Incoming Call Number",
|
||||||
@@ -551,8 +608,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("IncomingReject")] public JoinDataComplete IncomingReject =
|
[JoinName("IncomingReject")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 52, JoinSpan = 1},
|
public JoinDataComplete IncomingReject =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 52, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Reject Incoming Call",
|
Description = "Reject Incoming Call",
|
||||||
@@ -561,8 +619,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
[JoinName("ManualDial")] public JoinDataComplete ManualDial =
|
[JoinName("ManualDial")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 71, JoinSpan = 1},
|
public JoinDataComplete ManualDial =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 71, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Dial manual string",
|
Description = "Dial manual string",
|
||||||
@@ -570,8 +629,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("Meeting Count Fb")] public JoinDataComplete MeetingCount =
|
[JoinName("Meeting Count Fb")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 161, JoinSpan = 1},
|
public JoinDataComplete MeetingCount =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 161, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Meeting Count",
|
Description = "Meeting Count",
|
||||||
@@ -579,8 +639,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Analog
|
JoinType = eJoinType.Analog
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("MicMuteOff")] public JoinDataComplete MicMuteOff =
|
[JoinName("MicMuteOff")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 172, JoinSpan = 1},
|
public JoinDataComplete MicMuteOff =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 172, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Mic Mute Off",
|
Description = "Mic Mute Off",
|
||||||
@@ -588,8 +649,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("MicMuteOn")] public JoinDataComplete MicMuteOn =
|
[JoinName("MicMuteOn")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 171, JoinSpan = 1},
|
public JoinDataComplete MicMuteOn =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 171, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Mic Mute On",
|
Description = "Mic Mute On",
|
||||||
@@ -597,8 +659,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("MicMuteToggle")] public JoinDataComplete MicMuteToggle =
|
[JoinName("MicMuteToggle")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 173, JoinSpan = 1},
|
public JoinDataComplete MicMuteToggle =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 173, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Mic Mute Toggle",
|
Description = "Mic Mute Toggle",
|
||||||
@@ -606,8 +669,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("MinutesBeforeMeetingStart")] public JoinDataComplete MinutesBeforeMeetingStart =
|
[JoinName("MinutesBeforeMeetingStart")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 41, JoinSpan = 1},
|
public JoinDataComplete MinutesBeforeMeetingStart =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 41, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Minutes before meeting start that a meeting is joinable",
|
Description = "Minutes before meeting start that a meeting is joinable",
|
||||||
@@ -615,8 +679,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Analog
|
JoinType = eJoinType.Analog
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("ParticipantCount")] public JoinDataComplete ParticipantCount =
|
[JoinName("ParticipantCount")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 151, JoinSpan = 1},
|
public JoinDataComplete ParticipantCount =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 151, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Current Participant Count",
|
Description = "Current Participant Count",
|
||||||
@@ -624,8 +689,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Analog
|
JoinType = eJoinType.Analog
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("Schedule")] public JoinDataComplete Schedule =
|
[JoinName("Schedule")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 102, JoinSpan = 1},
|
public JoinDataComplete Schedule =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 102, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Schedule Data - XSIG",
|
Description = "Schedule Data - XSIG",
|
||||||
@@ -633,8 +699,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("AutoShareWhileInCall")] public JoinDataComplete SourceShareAutoStart =
|
[JoinName("AutoShareWhileInCall")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 203, JoinSpan = 1},
|
public JoinDataComplete SourceShareAutoStart =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 203, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "When high, will autostart sharing when a call is joined",
|
Description = "When high, will autostart sharing when a call is joined",
|
||||||
@@ -642,8 +709,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("SourceShareEnd")] public JoinDataComplete SourceShareEnd =
|
[JoinName("SourceShareEnd")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 202, JoinSpan = 1},
|
public JoinDataComplete SourceShareEnd =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 202, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Stop Sharing & Feedback",
|
Description = "Stop Sharing & Feedback",
|
||||||
@@ -651,8 +719,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("SourceShareStart")] public JoinDataComplete SourceShareStart =
|
[JoinName("SourceShareStart")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 201, JoinSpan = 1},
|
public JoinDataComplete SourceShareStart =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 201, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Start Sharing & Feedback",
|
Description = "Start Sharing & Feedback",
|
||||||
@@ -660,8 +729,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("RecievingContent")] public JoinDataComplete RecievingContent =
|
[JoinName("RecievingContent")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 204, JoinSpan = 1},
|
public JoinDataComplete RecievingContent =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 204, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Recieving content from the far end",
|
Description = "Recieving content from the far end",
|
||||||
@@ -669,8 +739,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinCapabilities = eJoinCapabilities.ToSIMPL
|
JoinCapabilities = eJoinCapabilities.ToSIMPL
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("SelfviewPosition")] public JoinDataComplete SelfviewPosition =
|
[JoinName("SelfviewPosition")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 211, JoinSpan = 1},
|
public JoinDataComplete SelfviewPosition =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 211, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "advance selfview position",
|
Description = "advance selfview position",
|
||||||
@@ -688,8 +759,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("SpeedDialStart")] public JoinDataComplete SpeedDialStart =
|
[JoinName("SpeedDialStart")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 41, JoinSpan = 4},
|
public JoinDataComplete SpeedDialStart =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 41, JoinSpan = 4 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Speed Dial",
|
Description = "Speed Dial",
|
||||||
@@ -697,8 +769,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("UpdateMeetings")] public JoinDataComplete UpdateMeetings =
|
[JoinName("UpdateMeetings")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 160, JoinSpan = 1},
|
public JoinDataComplete UpdateMeetings =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 160, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Update Meetings",
|
Description = "Update Meetings",
|
||||||
@@ -706,8 +779,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("VolumeDown")] public JoinDataComplete VolumeDown =
|
[JoinName("VolumeDown")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 175, JoinSpan = 1},
|
public JoinDataComplete VolumeDown =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 175, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Volume Down",
|
Description = "Volume Down",
|
||||||
@@ -715,8 +789,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("VolumeLevel")] public JoinDataComplete VolumeLevel =
|
[JoinName("VolumeLevel")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 174, JoinSpan = 1},
|
public JoinDataComplete VolumeLevel =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 174, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Volume Level",
|
Description = "Volume Level",
|
||||||
@@ -724,8 +799,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Analog
|
JoinType = eJoinType.Analog
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("VolumeMuteOff")] public JoinDataComplete VolumeMuteOff =
|
[JoinName("VolumeMuteOff")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 177, JoinSpan = 1},
|
public JoinDataComplete VolumeMuteOff =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 177, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Volume Mute Off",
|
Description = "Volume Mute Off",
|
||||||
@@ -733,8 +809,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("VolumeMuteOn")] public JoinDataComplete VolumeMuteOn =
|
[JoinName("VolumeMuteOn")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 176, JoinSpan = 1},
|
public JoinDataComplete VolumeMuteOn =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 176, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Volume Mute On",
|
Description = "Volume Mute On",
|
||||||
@@ -742,8 +819,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("VolumeMuteToggle")] public JoinDataComplete VolumeMuteToggle =
|
[JoinName("VolumeMuteToggle")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 178, JoinSpan = 1},
|
public JoinDataComplete VolumeMuteToggle =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 178, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Volume Mute Toggle",
|
Description = "Volume Mute Toggle",
|
||||||
@@ -751,8 +829,9 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Digital
|
JoinType = eJoinType.Digital
|
||||||
});
|
});
|
||||||
|
|
||||||
[JoinName("VolumeUp")] public JoinDataComplete VolumeUp =
|
[JoinName("VolumeUp")]
|
||||||
new JoinDataComplete(new JoinData {JoinNumber = 174, JoinSpan = 1},
|
public JoinDataComplete VolumeUp =
|
||||||
|
new JoinDataComplete(new JoinData { JoinNumber = 174, JoinSpan = 1 },
|
||||||
new JoinMetadata
|
new JoinMetadata
|
||||||
{
|
{
|
||||||
Description = "Volume Up",
|
Description = "Volume Up",
|
||||||
@@ -800,7 +879,26 @@ namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
|||||||
JoinType = eJoinType.Serial
|
JoinType = eJoinType.Serial
|
||||||
});
|
});
|
||||||
|
|
||||||
public VideoCodecControllerJoinMap(uint joinStart) : base(joinStart, typeof (VideoCodecControllerJoinMap))
|
public VideoCodecControllerJoinMap(uint joinStart)
|
||||||
|
: base(joinStart, typeof(VideoCodecControllerJoinMap))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public VideoCodecControllerJoinMap(uint joinStart, Type type)
|
||||||
|
: base(joinStart, type)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.Bridges.JoinMaps
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.Bridges.JoinMaps")]
|
||||||
|
public class VideoCodecControllerJoinMap : PepperDash.Essentials.Core.Bridges.JoinMaps.VideoCodecControllerJoinMap
|
||||||
|
{
|
||||||
|
|
||||||
|
public VideoCodecControllerJoinMap(uint joinStart) : this(joinStart, typeof (VideoCodecControllerJoinMap))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
using System;
|
||||||
|
|
||||||
|
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
||||||
{
|
{
|
||||||
public interface IHasBranding
|
public interface IHasBranding
|
||||||
{
|
{
|
||||||
@@ -6,3 +8,12 @@
|
|||||||
void InitializeBranding(string roomKey);
|
void InitializeBranding(string roomKey);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.DeviceTypeInterfaces")]
|
||||||
|
public interface IHasBranding:PepperDash.Essentials.Core.DeviceTypeInterfaces.IHasBranding
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using PepperDash.Essentials.Core;
|
using System;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
||||||
{
|
{
|
||||||
public interface IHasPhoneDialing
|
public interface IHasPhoneDialing
|
||||||
{
|
{
|
||||||
@@ -12,3 +12,11 @@ namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
|||||||
void SendDtmfToPhone(string digit);
|
void SendDtmfToPhone(string digit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.DeviceTypeInterfaces")]
|
||||||
|
public interface IHasPhoneDialing:PepperDash.Essentials.Core.DeviceTypeInterfaces.IHasPhoneDialing
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
||||||
{
|
{
|
||||||
public interface ILanguageDefinition
|
public interface ILanguageDefinition
|
||||||
{
|
{
|
||||||
@@ -16,3 +16,11 @@ namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
|||||||
List<LanguageLabel> RoomNames { get; set; }
|
List<LanguageLabel> RoomNames { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.DeviceTypeInterfaces")]
|
||||||
|
public interface ILanguageDefinition:PepperDash.Essentials.Core.DeviceTypeInterfaces.ILanguageDefinition
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
||||||
{
|
{
|
||||||
|
|
||||||
public interface ILanguageProvider
|
public interface ILanguageProvider
|
||||||
{
|
{
|
||||||
ILanguageDefinition CurrentLanguage { get; set; }
|
ILanguageDefinition CurrentLanguage { get; set; }
|
||||||
@@ -11,3 +11,12 @@ namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.DeviceTypeInterfaces")]
|
||||||
|
public interface ILanguageProvider:PepperDash.Essentials.Core.DeviceTypeInterfaces.ILanguageProvider
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
using PepperDash.Core;
|
using System;
|
||||||
|
using PepperDash.Core;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
||||||
{
|
{
|
||||||
public class LanguageLabel
|
public class LanguageLabel
|
||||||
{
|
{
|
||||||
@@ -10,3 +11,11 @@ namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
|||||||
public uint JoinNumber { get; set; }
|
public uint JoinNumber { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.DeviceTypeInterfaces")]
|
||||||
|
public class LanguageLabel: PepperDash.Essentials.Core.DeviceTypeInterfaces.LanguageLabel
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,7 +7,7 @@ using PepperDash.Essentials.Core;
|
|||||||
using PepperDash.Essentials.Core.Bridges;
|
using PepperDash.Essentials.Core.Bridges;
|
||||||
using PepperDash.Essentials.Core.Config;
|
using PepperDash.Essentials.Core.Config;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.Devices
|
namespace PepperDash.Essentials.Core.Devices
|
||||||
{
|
{
|
||||||
public class GenericIrController: EssentialsBridgeableDevice
|
public class GenericIrController: EssentialsBridgeableDevice
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,8 +3,9 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using Crestron.SimplSharp;
|
using Crestron.SimplSharp;
|
||||||
|
using PepperDash.Essentials.Core;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core
|
namespace PepperDash.Essentials.Core
|
||||||
{
|
{
|
||||||
public class IsReadyEventArgs : EventArgs
|
public class IsReadyEventArgs : EventArgs
|
||||||
{
|
{
|
||||||
@@ -22,3 +23,19 @@ namespace PepperDash_Essentials_Core
|
|||||||
bool IsReady { get; }
|
bool IsReady { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core")]
|
||||||
|
public class IsReadyEventArgs : PepperDash.Essentials.Core.IsReadyEventArgs
|
||||||
|
{
|
||||||
|
public IsReadyEventArgs(bool data) : base(data)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core")]
|
||||||
|
public interface IHasReady: PepperDash.Essentials.Core.IHasReady
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -10,9 +10,7 @@ using Crestron.SimplSharpPro.DeviceSupport;
|
|||||||
|
|
||||||
|
|
||||||
using PepperDash.Core;
|
using PepperDash.Core;
|
||||||
using PepperDash.Essentials.Core;
|
|
||||||
using PepperDash.Essentials.Core.Config;
|
using PepperDash.Essentials.Core.Config;
|
||||||
using PepperDash_Essentials_Core;
|
|
||||||
|
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Core
|
namespace PepperDash.Essentials.Core
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ using Crestron.SimplSharpPro.GeneralIO;
|
|||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using PepperDash.Core;
|
using PepperDash.Core;
|
||||||
using PepperDash.Essentials.Core.Bridges;
|
using PepperDash.Essentials.Core.Bridges;
|
||||||
using PepperDash_Essentials_Core.Bridges.JoinMaps;
|
using PepperDash.Essentials.Core.Bridges.JoinMaps;
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using PepperDash.Core;
|
using PepperDash.Core;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.Queues
|
namespace PepperDash.Essentials.Core.Queues
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// IBasicCommunication Message for IQueue
|
/// IBasicCommunication Message for IQueue
|
||||||
@@ -71,3 +71,31 @@ namespace PepperDash_Essentials_Core.Queues
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.Queues
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// IBasicCommunication Message for IQueue
|
||||||
|
/// </summary>
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.Queues")]
|
||||||
|
public class ComsMessage : PepperDash.Essentials.Core.Queues.ComsMessage
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor for a string message
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="coms">IBasicCommunication to send the message</param>
|
||||||
|
/// <param name="message">Message to send</param>
|
||||||
|
public ComsMessage(IBasicCommunication coms, string message):base(coms, message)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor for a byte message
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="coms">IBasicCommunication to send the message</param>
|
||||||
|
/// <param name="message">Message to send</param>
|
||||||
|
public ComsMessage(IBasicCommunication coms, byte[] message):base(coms, message)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@ using Crestron.SimplSharp;
|
|||||||
using Crestron.SimplSharpPro.CrestronThread;
|
using Crestron.SimplSharpPro.CrestronThread;
|
||||||
using PepperDash.Core;
|
using PepperDash.Core;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.Queues
|
namespace PepperDash.Essentials.Core.Queues
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Threadsafe processing of queued items with pacing if required
|
/// Threadsafe processing of queued items with pacing if required
|
||||||
@@ -126,7 +126,9 @@ namespace PepperDash_Essentials_Core.Queues
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="key">Key</param>
|
/// <param name="key">Key</param>
|
||||||
/// <param name="priority"></param>
|
/// <param name="priority"></param>
|
||||||
private GenericQueue(string key, Thread.eThreadPriority priority, int capacity, int pacing)
|
/// <param name="capacity"></param>
|
||||||
|
/// <param name="pacing"></param>
|
||||||
|
protected GenericQueue(string key, Thread.eThreadPriority priority, int capacity, int pacing)
|
||||||
{
|
{
|
||||||
_key = key;
|
_key = key;
|
||||||
int cap = 25; // sets default
|
int cap = 25; // sets default
|
||||||
@@ -245,3 +247,105 @@ namespace PepperDash_Essentials_Core.Queues
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.Queues
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Threadsafe processing of queued items with pacing if required
|
||||||
|
/// </summary>
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.Queues")]
|
||||||
|
public class GenericQueue : PepperDash.Essentials.Core.Queues.GenericQueue
|
||||||
|
{
|
||||||
|
private bool _delayEnabled;
|
||||||
|
private int _delayTime;
|
||||||
|
|
||||||
|
private const Thread.eThreadPriority _defaultPriority = Thread.eThreadPriority.MediumPriority;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor with no thread priority
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
public GenericQueue(string key)
|
||||||
|
: this(key, _defaultPriority, 0, 0)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor with queue size
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="capacity">Fixed size for the queue to hold</param>
|
||||||
|
public GenericQueue(string key, int capacity)
|
||||||
|
: this(key, _defaultPriority, capacity, 0)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor for generic queue with no pacing
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key">Key</param>
|
||||||
|
/// <param name="pacing">Pacing in ms between actions</param>
|
||||||
|
public GenericQueue(int pacing, string key)
|
||||||
|
: this(key, _defaultPriority, 0, pacing)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor with pacing and capacity
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="pacing"></param>
|
||||||
|
/// <param name="capacity"></param>
|
||||||
|
public GenericQueue(string key, int pacing, int capacity)
|
||||||
|
: this(key, _defaultPriority, capacity, pacing)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor with pacing and priority
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="pacing"></param>
|
||||||
|
/// <param name="priority"></param>
|
||||||
|
public GenericQueue(string key, int pacing, Thread.eThreadPriority priority)
|
||||||
|
: this(key, priority, 0, pacing)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor with pacing, priority and capacity
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="priority"></param>
|
||||||
|
/// <param name="capacity"></param>
|
||||||
|
public GenericQueue(string key, Thread.eThreadPriority priority, int capacity)
|
||||||
|
: this(key, priority, capacity, 0)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor with pacing, priority and capacity
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="pacing"></param>
|
||||||
|
/// <param name="priority"></param>
|
||||||
|
/// <param name="capacity"></param>
|
||||||
|
public GenericQueue(string key, int pacing, Thread.eThreadPriority priority, int capacity)
|
||||||
|
: this(key, priority, capacity, pacing)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor for generic queue with no pacing
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key">Key</param>
|
||||||
|
/// <param name="priority"></param>
|
||||||
|
/// <param name="capacity"></param>
|
||||||
|
/// <param name="pacing"></param>
|
||||||
|
private GenericQueue(string key, Thread.eThreadPriority priority, int capacity, int pacing):base(key, priority, capacity, pacing)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,7 +5,7 @@ using System.Text;
|
|||||||
using Crestron.SimplSharp;
|
using Crestron.SimplSharp;
|
||||||
using PepperDash.Core;
|
using PepperDash.Core;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.Queues
|
namespace PepperDash.Essentials.Core.Queues
|
||||||
{
|
{
|
||||||
public interface IQueue<T> : IKeyed, IDisposable where T : class
|
public interface IQueue<T> : IKeyed, IDisposable where T : class
|
||||||
{
|
{
|
||||||
@@ -13,3 +13,11 @@ namespace PepperDash_Essentials_Core.Queues
|
|||||||
bool Disposed { get; }
|
bool Disposed { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.Queues
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.Queues")]
|
||||||
|
public interface IQueue<T> : PepperDash.Essentials.Core.Queues.IQueue<T> where T: class
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,17 @@
|
|||||||
namespace PepperDash_Essentials_Core.Queues
|
using System;
|
||||||
|
|
||||||
|
namespace PepperDash.Essentials.Core.Queues
|
||||||
{
|
{
|
||||||
public interface IQueueMessage
|
public interface IQueueMessage
|
||||||
{
|
{
|
||||||
void Dispatch();
|
void Dispatch();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.Queues
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.Queues")]
|
||||||
|
public interface IQueueMessage:PepperDash.Essentials.Core.Queues.IQueueMessage
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.Queues
|
namespace PepperDash.Essentials.Core.Queues
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Message class for processing strings via an IQueue
|
/// Message class for processing strings via an IQueue
|
||||||
@@ -42,3 +42,20 @@ namespace PepperDash_Essentials_Core.Queues
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.Queues
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Message class for processing strings via an IQueue
|
||||||
|
/// </summary>
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.Queues")]
|
||||||
|
public class ProcessStringMessage : PepperDash.Essentials.Core.Queues.ProcessStringMessage
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="message">Message to be processed</param>
|
||||||
|
/// <param name="action">Action to invoke on the message</param>
|
||||||
|
public ProcessStringMessage(string message, Action<string> action) : base(message, action){}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using Crestron.SimplSharp;
|
using Crestron.SimplSharp;
|
||||||
using PepperDash.Core;
|
using PepperDash.Core;
|
||||||
|
|
||||||
namespace PepperDash_Essentials_Core.Queues
|
namespace PepperDash.Essentials.Core.Queues
|
||||||
{
|
{
|
||||||
public sealed class StringResponseProcessor : IKeyed, IDisposable
|
public sealed class StringResponseProcessor : IKeyed, IDisposable
|
||||||
{
|
{
|
||||||
@@ -104,3 +104,107 @@ namespace PepperDash_Essentials_Core.Queues
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace PepperDash_Essentials_Core.Queues
|
||||||
|
{
|
||||||
|
[Obsolete("Use PepperDash.Essentials.Core.Queues")]
|
||||||
|
public sealed class StringResponseProcessor : IKeyed, IDisposable
|
||||||
|
{
|
||||||
|
private readonly Action<string> _processStringAction;
|
||||||
|
private readonly PepperDash.Essentials.Core.Queues.IQueue<PepperDash.Essentials.Core.Queues.IQueueMessage> _queue;
|
||||||
|
private readonly IBasicCommunication _coms;
|
||||||
|
private readonly CommunicationGather _gather;
|
||||||
|
|
||||||
|
private StringResponseProcessor(string key, Action<string> processStringAction)
|
||||||
|
{
|
||||||
|
_processStringAction = processStringAction;
|
||||||
|
_queue = new PepperDash.Essentials.Core.Queues.GenericQueue(key);
|
||||||
|
|
||||||
|
CrestronEnvironment.ProgramStatusEventHandler += programEvent =>
|
||||||
|
{
|
||||||
|
if (programEvent != eProgramStatusEventType.Stopping)
|
||||||
|
return;
|
||||||
|
|
||||||
|
Dispose();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor that builds an instance and subscribes to coms TextReceived for processing
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="coms">Com port to process strings from</param>
|
||||||
|
/// <param name="processStringAction">Action to process the incoming strings</param>
|
||||||
|
public StringResponseProcessor(IBasicCommunication coms, Action<string> processStringAction)
|
||||||
|
: this(coms.Key, processStringAction)
|
||||||
|
{
|
||||||
|
_coms = coms;
|
||||||
|
coms.TextReceived += OnResponseReceived;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor that builds an instance and subscribes to gather Line Received for processing
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="gather">Gather to process strings from</param>
|
||||||
|
/// <param name="processStringAction">Action to process the incoming strings</param>
|
||||||
|
public StringResponseProcessor(CommunicationGather gather, Action<string> processStringAction)
|
||||||
|
: this(gather.Port.Key, processStringAction)
|
||||||
|
{
|
||||||
|
_gather = gather;
|
||||||
|
gather.LineReceived += OnResponseReceived;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnResponseReceived(object sender, GenericCommMethodReceiveTextArgs args)
|
||||||
|
{
|
||||||
|
_queue.Enqueue(new ProcessStringMessage(args.Text, _processStringAction));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Key
|
||||||
|
/// </summary>
|
||||||
|
public string Key
|
||||||
|
{
|
||||||
|
get { return _queue.Key; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Disposes the instance and cleans up resources.
|
||||||
|
/// </summary>
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
Dispose(true);
|
||||||
|
CrestronEnvironment.GC.SuppressFinalize(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (Disposed)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (disposing)
|
||||||
|
{
|
||||||
|
if (_coms != null)
|
||||||
|
_coms.TextReceived -= OnResponseReceived;
|
||||||
|
|
||||||
|
if (_gather != null)
|
||||||
|
{
|
||||||
|
_gather.LineReceived -= OnResponseReceived;
|
||||||
|
_gather.Stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
_queue.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
Disposed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// If the instance has been disposed or not. If it has, you can not use it anymore
|
||||||
|
/// </summary>
|
||||||
|
public bool Disposed { get; private set; }
|
||||||
|
|
||||||
|
~StringResponseProcessor()
|
||||||
|
{
|
||||||
|
Dispose(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -83,7 +83,7 @@ namespace PepperDash.Essentials.Core
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void _gateway_IsReadyEvent(object sender, PepperDash_Essentials_Core.IsReadyEventArgs e)
|
void _gateway_IsReadyEvent(object sender, IsReadyEventArgs e)
|
||||||
{
|
{
|
||||||
if (e.IsReady != true) return;
|
if (e.IsReady != true) return;
|
||||||
_remote = GetHr1x0WirelessRemote(_config);
|
_remote = GetHr1x0WirelessRemote(_config);
|
||||||
|
|||||||
@@ -18,8 +18,7 @@ using PepperDash.Essentials.Core.Routing;
|
|||||||
using PepperDash.Essentials.Devices.Common.Cameras;
|
using PepperDash.Essentials.Devices.Common.Cameras;
|
||||||
using PepperDash.Essentials.Devices.Common.Codec;
|
using PepperDash.Essentials.Devices.Common.Codec;
|
||||||
using PepperDash.Essentials.Devices.Common.VideoCodec;
|
using PepperDash.Essentials.Devices.Common.VideoCodec;
|
||||||
using PepperDash_Essentials_Core.Queues;
|
using PepperDash.Essentials.Core.Queues;
|
||||||
using PepperDash_Essentials_Core.DeviceTypeInterfaces;
|
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -19,8 +19,7 @@ using PepperDash.Essentials.Core.Routing;
|
|||||||
using PepperDash.Essentials.Devices.Common.Cameras;
|
using PepperDash.Essentials.Devices.Common.Cameras;
|
||||||
using PepperDash.Essentials.Devices.Common.Codec;
|
using PepperDash.Essentials.Devices.Common.Codec;
|
||||||
using PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces;
|
using PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces;
|
||||||
using PepperDash_Essentials_Core.Bridges.JoinMaps;
|
using PepperDash.Essentials.Core.Bridges.JoinMaps;
|
||||||
using PepperDash_Essentials_Core.DeviceTypeInterfaces;
|
|
||||||
using Feedback = PepperDash.Essentials.Core.Feedback;
|
using Feedback = PepperDash.Essentials.Core.Feedback;
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ using PepperDash.Essentials.Devices.Common.Cameras;
|
|||||||
using PepperDash.Essentials.Devices.Common.Codec;
|
using PepperDash.Essentials.Devices.Common.Codec;
|
||||||
using PepperDash.Essentials.Devices.Common.VideoCodec.Cisco;
|
using PepperDash.Essentials.Devices.Common.VideoCodec.Cisco;
|
||||||
using PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces;
|
using PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces;
|
||||||
using PepperDash_Essentials_Core.DeviceTypeInterfaces;
|
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user