Class FastClockData
The current model time reported by the Z21 (LAN_FAST_CLOCK_DATA, protocol §12.2).
public record FastClockData : IEquatable<FastClockData>
- Inheritance
-
FastClockData
- Implements
- Inherited Members
Constructors
FastClockData(byte, byte, byte, byte, byte, bool, bool, FastClockSettings)
The current model time reported by the Z21 (LAN_FAST_CLOCK_DATA, protocol §12.2).
public FastClockData(byte Day, byte Hour, byte Minute, byte Second, byte Rate, bool IsStopped, bool IsHalted, FastClockSettings Settings)
Parameters
DaybyteHourbyteMinutebyteSecondbyteRatebyteIsStoppedboolIsHaltedboolSettingsFastClockSettings
Properties
Day
public byte Day { get; init; }
Property Value
Hour
public byte Hour { get; init; }
Property Value
IsHalted
public bool IsHalted { get; init; }
Property Value
IsStopped
public bool IsStopped { get; init; }
Property Value
Minute
public byte Minute { get; init; }
Property Value
Rate
public byte Rate { get; init; }
Property Value
Second
public byte Second { get; init; }
Property Value
Settings
public FastClockSettings Settings { get; init; }