mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-06 08:16:11 +00:00
Introduced new interfaces and classes for screen and layout management, including `IHasScreensWithLayouts`, `ScreenInfo`, and `LayoutInfo`. Enhanced `IPresenterTrack` and `ISpeakerTrack` interfaces with additional properties and methods for managing presenter and speaker tracking. Added `IHasCodecRoomPresets` interface for room preset management and updated `CodecRoomPreset` class with a new constructor.
41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec.Cisco
|
|
{
|
|
/// <summary>
|
|
/// Describes the available tracking modes for a Cisco codec
|
|
/// </summary>
|
|
public interface ISpeakerTrack : IKeyed
|
|
{
|
|
/// <summary>
|
|
/// Indicates whether Speaker Track is available on the codec.
|
|
/// </summary>
|
|
bool SpeakerTrackAvailability { get; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
BoolFeedback SpeakerTrackAvailableFeedback { get; }
|
|
|
|
/// <summary>
|
|
/// Feedback indicating the current status of Speaker Track is off
|
|
/// </summary>
|
|
bool SpeakerTrackStatus { get; }
|
|
|
|
/// <summary>
|
|
/// Turns Speaker Track off
|
|
/// </summary>
|
|
void SpeakerTrackOff();
|
|
/// <summary>
|
|
/// Turns Speaker Track on
|
|
/// </summary>
|
|
void SpeakerTrackOn();
|
|
}
|
|
}
|