mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Progress on CameraBaseMessenger
This commit is contained in:
parent
b07e85c4e7
commit
0ed613de73
4 changed files with 102 additions and 4 deletions
|
|
@ -87,6 +87,7 @@ namespace PepperDash.Essentials.Devices.Common.Cameras
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
public class CameraPropertiesConfig
|
||||
{
|
||||
public CommunicationMonitorConfig CommunicationMonitorProperties { get; set; }
|
||||
|
|
|
|||
|
|
@ -88,6 +88,8 @@ namespace PepperDash.Essentials.Devices.Common.Cameras
|
|||
/// </summary>
|
||||
public interface IHasCameraPanControl
|
||||
{
|
||||
// void PanLeft(bool pressRelease);
|
||||
// void PanRight(bool pressRelease);
|
||||
void PanLeft();
|
||||
void PanRight();
|
||||
void PanStop();
|
||||
|
|
@ -98,6 +100,8 @@ namespace PepperDash.Essentials.Devices.Common.Cameras
|
|||
/// </summary>
|
||||
public interface IHasCameraTiltControl
|
||||
{
|
||||
// void TiltDown(bool pressRelease);
|
||||
// void TildUp(bool pressRelease);
|
||||
void TiltDown();
|
||||
void TiltUp();
|
||||
void TiltStop();
|
||||
|
|
@ -108,6 +112,8 @@ namespace PepperDash.Essentials.Devices.Common.Cameras
|
|||
/// </summary>
|
||||
public interface IHasCameraZoomControl
|
||||
{
|
||||
// void ZoomIn(bool pressRelease);
|
||||
// void ZoomOut(bool pressRelease);
|
||||
void ZoomIn();
|
||||
void ZoomOut();
|
||||
void ZoomStop();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue