Interface IGnssSensor
Interface describing a Global navigation satellite system (GNSS) sensor
Assembly: Meadow.Contracts.dll
View Source
Declaration
public interface IGnssSensor
Properties
SupportedResultTypes
Supported GNSS result types
View Source
Declaration
IGnssResult[] SupportedResultTypes { get; }
Methods
StartUpdating()
Start updating GNSS data
View Source
Declaration
void StartUpdating()
StopUpdating()
Stop updating GNSS data
View Source
Declaration
void StopUpdating()
Events
GnssDataReceived
Raised when new GNSS data is available
View Source
Declaration
event EventHandler<IGnssResult> GnssDataReceived
Event Type
System.EventHandler<Meadow.Peripherals.Sensors.Location.Gnss.IGnssResult>