Class Sim800Gnss
Represents a Sim800 Global Navigation Satellite System class.
public class Sim800Gnss : GnssBase
- Inheritance
-
Sim800Gnss
- Inherited Members
Properties
AutomaticUpdate
Gets or sets the interval between wich the GNSS position is updated. An event is raised when a new valid position is received.
public override TimeSpan AutomaticUpdate { get; set; }
Property Value
IsRunning
Gets a value indicating whether the GNSS device is running.
public override bool IsRunning { get; }
Property Value
Methods
GetLocation()
Gets the position of the GNSS device.
public override Location GetLocation()
Returns
- Location
A GNSS position or null if none.
GetProductDetails()
Gets the product details.
public override string GetProductDetails()
Returns
- string
A string representing the product details.
Start()
Starts the GNSS device.
public override bool Start()
Returns
- bool
A value indicating whether the start was successful.
Stop()
Stops the GNSS device.
public override bool Stop()
Returns
- bool
A value indicating whether the stop was successful.