Files
gpsll/README.md
T
2026-09-07 15:11:55 -05:00

31 lines
607 B
Markdown

# gpsll
Using Rust and the following packages
```Rust
[dependencies]
serialport = "4.2"
nmea = {version = "0.6", features = ["GGA"]}
clap = { version = "4", features = ["derive"] }
chrono = "0.4.45"
```
I wanted a simple way to export latitude and longitude from a GPS USB dongle to the terminal.
## Usage
```
A tool for echoing latitude and longitude from a GPS USB dongle.
Usage: gpsll [OPTIONS]
Options:
-c, --com <COM> COM port
-h, --help Print help
-V, --version Print version
```
## Acknowledgments
- Inspiration from https://github.com/FPyC639/Rust_GPS_GUI_COM_Port_Reader.