Class GsvDecoder
Process the Satellites in view messages from a GPS module.
Assembly: NmeaProcessor.dll
View Source
public class GsvDecoder : INmeaDecoder
Implements:
Meadow.Foundation.Sensors.Location.Gnss.INmeaDecoder
Properties
Prefix
Get the prefix for the decoder.
View Source
public string Prefix { get; }
Name
Get the friendly (human readable) name for the decoder.
View Source
public string Name { get; }
Fields
_satellites
List of satellites.
View Source
protected Satellite[]? _satellites
Methods
Process(NmeaSentence)
Process the message from the GPS.
View Source
public void Process(NmeaSentence sentence)
Parameters
Type | Name | Description |
---|---|---|
Meadow.Peripherals.Sensors.Location.Gnss.NmeaSentence | sentence | String array of the elements of the message. |
Events
SatellitesInViewReceived
Event raised when valid GSV data is received.
View Source
public event EventHandler<SatellitesInView> SatellitesInViewReceived
Event Type
System.EventHandler<Meadow.Peripherals.Sensors.Location.Gnss.SatellitesInView>