Emlid.WindowsIot.Hardware.Protocols.Pwm.PwmCycle.PwmCycle C# (CSharp) Method

PwmCycle() public method

Creates an instance with zeros except the time of the last cycle low.
Typically used as a follow-on to a previous cycle.
public PwmCycle ( long lowTime ) : System.Globalization
lowTime long
return System.Globalization
        public PwmCycle(long lowTime)
        {
            LowTime = lowTime;
            LowLength = 0;
            HighTime = 0;
            HighLength = 0;
        }