This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using DTS.Common.Enums;
namespace DTS.Common.Interface.Sensors
{
/// <summary>
/// this interface describes the default properties and methods for a digital output
/// It's intended to allow interaction with digital output defaults
/// 13574 Design for Default squib config file settings
/// </summary>
public interface IDigitalOutDefaults
{
/// <summary>
/// the default output mode for digital outputs
/// </summary>
DigitalOutputModes OutputMode{ get; set; }
/// <summary>
/// the default delay in ms for digital outputs
/// </summary>
double DelayMS { get; set; }
/// <summary>
/// the default for whether to limit output duration or not
/// </summary>
bool LimitDuration { get; set; }
/// <summary>
/// the default duration in ms to limit duration if limiting duration
/// </summary>
double DurationMS { get; set; }
}
}