Struct LoraBeacon
The Class B beacon settings of a plan.
public readonly record struct LoraBeacon : IEquatable<LoraBeacon>
- Implements
- Inherited Members
Constructors
LoraBeacon(uint, uint, byte)
The Class B beacon settings of a plan.
public LoraBeacon(uint FrequencyHz, uint PingSlotFrequencyHz, byte DataRate)
Parameters
FrequencyHzuintThe frequency the beacon is broadcast on, in hertz.
PingSlotFrequencyHzuintThe default ping-slot frequency, in hertz.
DataRatebyteThe data rate the beacon is broadcast at.
Properties
DataRate
The data rate the beacon is broadcast at.
public byte DataRate { get; init; }
Property Value
FrequencyHz
The frequency the beacon is broadcast on, in hertz.
public uint FrequencyHz { get; init; }
Property Value
PingSlotFrequencyHz
The default ping-slot frequency, in hertz.
public uint PingSlotFrequencyHz { get; init; }