mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-03 14:55:05 +00:00
Significantly restructure camera control interfaces and event arguments. Removed obsolete interfaces like `IHasCameras` and `CameraSelectedEventArgs`, and introduced generic event argument classes for improved type safety. Added `IHasCamerasWithControls` for better management of camera controls. Corrected the `IHasCameraMuteWithUnmuteReqeust` interface name. Reintroduced the `eCameraControlMode` enum to define camera control modes. These changes enhance the organization, clarity, and functionality of the camera control system.
25 lines
535 B
C#
25 lines
535 B
C#
|
|
namespace PepperDash.Essentials.Devices.Common.Cameras
|
|
{
|
|
/// <summary>
|
|
/// Interface for camera pan control
|
|
/// </summary>
|
|
public interface IHasCameraPanControl : IHasCameraControls
|
|
{
|
|
/// <summary>
|
|
/// Pans the camera left
|
|
/// </summary>
|
|
void PanLeft();
|
|
|
|
/// <summary>
|
|
/// Pans the camera right
|
|
/// </summary>
|
|
void PanRight();
|
|
|
|
/// <summary>
|
|
/// Stops the camera pan movement
|
|
/// </summary>
|
|
void PanStop();
|
|
}
|
|
}
|