mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-16 13:15:03 +00:00
feat: adds method to set input source type and corresponding enum to ICiscoCodecCameraConfig
This commit is contained in:
@@ -0,0 +1,31 @@
|
|||||||
|
using Crestron.SimplSharpPro;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Describes a cisco codec device that can allow configuration of cameras
|
||||||
|
/// </summary>
|
||||||
|
public interface ICiscoCodecCameraConfig
|
||||||
|
{
|
||||||
|
void SetCameraAssignedSerialNumber(uint cameraId, string serialNumber);
|
||||||
|
|
||||||
|
void SetCameraName(uint videoConnecterId, string name);
|
||||||
|
|
||||||
|
void SetInputSourceType(uint videoConnectorId, eCiscoCodecInputSourceType sourceType);
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum eCiscoCodecInputSourceType
|
||||||
|
{
|
||||||
|
PC,
|
||||||
|
camera,
|
||||||
|
document_camera,
|
||||||
|
mediaplayer,
|
||||||
|
other,
|
||||||
|
whiteboard
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user