|
@@ -1,9 +1,21 @@
|
|
|
# GPS for Flipper Zero
|
|
# GPS for Flipper Zero
|
|
|
|
|
|
|
|
-A simple Flipper Zero application for NMEA 0183 serial GPS modules, such as the
|
|
|
|
|
-- Adafruit Ultimate GPS Breakout.
|
|
|
|
|
|
|
+[](https://github.com/ezod/flipperzero-gps/actions/workflows/build.yml)
|
|
|
|
|
|
|
|
-Heavy lifting (NMEA parsing) provided by minmea.
|
|
|
|
|
|
|
+A simple Flipper Zero application for NMEA 0183 serial GPS modules.
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+Heavy lifting (NMEA parsing) provided by [minmea].
|
|
|
|
|
+
|
|
|
|
|
+## Installation
|
|
|
|
|
+
|
|
|
|
|
+1. Navigate to the [FAP Build](https://github.com/ezod/flipperzero-gps/actions/workflows/build.yml)
|
|
|
|
|
+ GitHub action workflow, and select the most recent run.
|
|
|
|
|
+2. The FAP is built for both the `dev` and `release` channels of the official
|
|
|
|
|
+ firmware. Download the artifact corresponding to your firmware version.
|
|
|
|
|
+3. Extract `gps_nmea.fap` from the ZIP file to `apps/GPIO` on your Flipper
|
|
|
|
|
+ Zero SD card.
|
|
|
|
|
|
|
|
## Usage
|
|
## Usage
|
|
|
|
|
|
|
@@ -11,7 +23,7 @@ This is a single-screen app, and a few interactions are provided via the
|
|
|
hardware buttons:
|
|
hardware buttons:
|
|
|
|
|
|
|
|
- Long press the up button to change the **baud rate**. The default baud rate
|
|
- Long press the up button to change the **baud rate**. The default baud rate
|
|
|
- is 9600, but 19200, 38400, 57600, and 115200 baud are also supported.
|
|
|
|
|
|
|
+ is 9600, but 4800, 19200, 38400, 57600, and 115200 baud are also supported.
|
|
|
- Long press the right button to change **speed units** from knots to
|
|
- Long press the right button to change **speed units** from knots to
|
|
|
kilometers per hour.
|
|
kilometers per hour.
|
|
|
- Press the OK button to set the **backlight** to always on mode. Press it
|
|
- Press the OK button to set the **backlight** to always on mode. Press it
|
|
@@ -23,14 +35,15 @@ hardware buttons:
|
|
|
Connect the GPS module to power and the USART using GPIO pins 9 (3.3V), 11
|
|
Connect the GPS module to power and the USART using GPIO pins 9 (3.3V), 11
|
|
|
(GND), 13 (TX), and 14 (RX), as appropriate.
|
|
(GND), 13 (TX), and 14 (RX), as appropriate.
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
|
|
|
-See the tutorial video - https://www.youtube.com/watch?v=5vSGFzEBp-k from
|
|
|
|
|
-Lab401 by RocketGod - https://github.com/RocketGod-git for a visual guide to
|
|
|
|
|
|
|
+See the [tutorial video](https://www.youtube.com/watch?v=5vSGFzEBp-k) from
|
|
|
|
|
+Lab401 by [RocketGod](https://github.com/RocketGod-git) for a visual guide to
|
|
|
the hardware setup.
|
|
the hardware setup.
|
|
|
|
|
|
|
|
-## Confirmed Compatible Modules
|
|
|
|
|
|
|
+### Confirmed Compatible Modules
|
|
|
|
|
|
|
|
-* Adafruit Ultimate GPS Breakout
|
|
|
|
|
|
|
+* [Adafruit Ultimate GPS Breakout]
|
|
|
* ATGM336H
|
|
* ATGM336H
|
|
|
* Beitian BN-180
|
|
* Beitian BN-180
|
|
|
* Beitian BN-220
|
|
* Beitian BN-220
|
|
@@ -42,17 +55,26 @@ the hardware setup.
|
|
|
* Beitian BE-280
|
|
* Beitian BE-280
|
|
|
* Beitian BN-280ZF
|
|
* Beitian BN-280ZF
|
|
|
* Beitian BN-357ZF
|
|
* Beitian BN-357ZF
|
|
|
|
|
+* Fastrax UP500
|
|
|
|
|
+* [mRo GPS u-Blox Neo-M8N]
|
|
|
* Royaltek RBT-2100LP
|
|
* Royaltek RBT-2100LP
|
|
|
-* u-blox NEO-6M
|
|
|
|
|
-* u-blox NEO-7M
|
|
|
|
|
-* Uputronics u-blox MAX-M8C Pico
|
|
|
|
|
|
|
+* [u-Blox NEO-6M]
|
|
|
|
|
+* [u-Blox NEO-7M]
|
|
|
|
|
+* [Uputronics u-blox MAX-M8C Pico]
|
|
|
|
|
|
|
|
If you have verified this application working with a module not listed here,
|
|
If you have verified this application working with a module not listed here,
|
|
|
please submit a PR adding it to the list.
|
|
please submit a PR adding it to the list.
|
|
|
|
|
|
|
|
-## Links
|
|
|
|
|
|
|
+## Building
|
|
|
|
|
+
|
|
|
|
|
+This application can be compiled using [uFBT]. Run `ufbt` in the root directory
|
|
|
|
|
+of the repository.
|
|
|
|
|
|
|
|
-Original repo link - https://github.com/ezod/flipperzero-gps
|
|
|
|
|
-Adafruit Ultimate GPS Breakout: https://www.adafruit.com/product/746
|
|
|
|
|
-minmea: https://github.com/kosma/minmea
|
|
|
|
|
-u-blox NEO-6M: https://www.u-blox.com/en/product/neo-6-series
|
|
|
|
|
|
|
+[Adafruit Ultimate GPS Breakout]: https://www.adafruit.com/product/746
|
|
|
|
|
+[minmea]: https://github.com/kosma/minmea
|
|
|
|
|
+[mRo GPS u-Blox Neo-M8N]: https://store.mrobotics.io/product-p/m10034-solo.htm
|
|
|
|
|
+[qFlipper]: https://flipperzero.one/update
|
|
|
|
|
+[u-Blox NEO-6M]: https://www.u-blox.com/en/product/neo-6-series
|
|
|
|
|
+[u-Blox NEO-7M]: https://www.u-blox.com/en/product/neo-7-series
|
|
|
|
|
+[uFBT]: https://github.com/flipperdevices/flipperzero-ufbt
|
|
|
|
|
+[Uputronics u-blox MAX-M8C Pico]: https://store.uputronics.com/index.php?route=product/product&product_id=72
|