mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-14 13:07:18 +00:00
- Updated RelayControlledShade to utilize Timer for output pulsing. - Refactored MockVC to replace CTimer with Timer for call status simulation. - Modified VideoCodecBase to enhance documentation and improve feedback handling. - Removed obsolete IHasCamerasMessenger and updated related classes to use IHasCamerasWithControls. - Adjusted PressAndHoldHandler to implement Timer for button hold actions. - Enhanced logging throughout MobileControl and RoomBridges for better debugging and information tracking. - Cleaned up unnecessary comments and improved exception handling in various classes.
13 lines
254 B
C#
13 lines
254 B
C#
|
|
namespace PepperDash.Essentials.Devices.Common.Cameras
|
|
{
|
|
|
|
/// <summary>
|
|
/// Defines the contract for IHasCodecCameras
|
|
/// </summary>
|
|
public interface IHasCodecCameras : IHasCamerasWithControls, IHasFarEndCameraControl
|
|
{
|
|
|
|
}
|
|
|
|
}
|