mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 19:34:51 +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
655 B
C#
25 lines
655 B
C#
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Cameras
|
|
{
|
|
/// <summary>
|
|
/// Enum for camera control modes
|
|
/// </summary>
|
|
public enum eCameraControlMode
|
|
{
|
|
/// <summary>
|
|
/// Manual control mode, where the camera is controlled directly by the user or system
|
|
/// </summary>
|
|
Manual = 0,
|
|
/// <summary>
|
|
/// Off control mode, where the camera is turned off or disabled
|
|
/// </summary>
|
|
Off,
|
|
/// <summary>
|
|
/// Auto control mode, where the camera automatically adjusts settings based on the environment or conditions
|
|
/// </summary>
|
|
Auto
|
|
}
|
|
|
|
}
|