hawkeye camera support(not tested)

This commit is contained in:
meelstorm
2025-08-19 12:45:50 +02:00
parent f80b275ad8
commit 6ef6aced8d
170 changed files with 20190 additions and 72 deletions

View File

@@ -0,0 +1,22 @@
using System.Collections.Generic;
namespace Inspectron.HawkEye.Protocol
{
public class CameraSettings
{
public ImageSettings ImageSettings { get; set; }
public int LightPwm1 { get; set; }
public int LightPwm2 { get; set; }
public string Name { get; set; }
public int OffsetX { get; set; }
public int ImageWidth { get; set; }
public int RescaleWidth { get; set; }
public int MinorCutoff { get; set; }
public bool BayerFilter { get; set; }
public bool LaserTrigger { get; set; }
public int LaserTriggerDelay { get; set; }
public bool FlipLines { get; set; }
public bool MirrorX { get; set; }
public bool TriggerLights { get; set; }
}
}