Skip to content

Releases: adafruit/Adafruit_CircuitPython_GPS

3.8.0 - Improve reliability by catching bad NMEA sentences

09 Mar 19:54
fd9d92a
Compare
Choose a tag to compare

Thanks @lesamouraipourpre!

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.

3.7.1 - Moved pylint from build.yml to .pre-commit-config.yml

03 Mar 00:04
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.

3.7.0 - Implemented GSV and GSA parsing

25 Feb 19:39
1b80dea
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.

3.6.8 - Fixed issue with Black and Pylint versions in the pre-commit config

10 Feb 22:30
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.

3.6.7 - Moved to pre-commit, added licensing info

20 Jan 23:00
f5959eb
Compare
Choose a tag to compare

pre-commit has been added to the GitHub Actions workflow in this repository. pre-commit allows you to run multiple checks, such as black and checking the REUSE licensing compliance, both locally and on GitHub Actions with one command.

You can run pre-commit locally with pre-commit run --all-files

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.

3.6.6 - Fixed typo in simpletest

28 Dec 19:05
06ca26d
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.

3.6.5 - Fixed discord invite link

09 Jul 20:55
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.

3.6.4 - Stability improvements for modules that aren't officially supported

11 Jun 18:01
486e055
Compare
Choose a tag to compare

This release includes:

  • Fixes a TypeError that was happening when using the NEO-7M
  • As of now, the NEO-7M is unofficially supported. It currently works, but we are not testing changes on it, so it may not always.
  • Thanks @fvzeppelin for the great PR

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.

3.6.3 - Fix typo

07 May 20:33
67b8715
Compare
Choose a tag to compare

The GNGLL sentence was mistakenly written as GNGGL. Thanks @digixx for pointing this out.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.

3.6.2 - Changed busio.i2c to board.i2c

07 May 16:02
82ecc0c
Compare
Choose a tag to compare

The purpose of doing this was to avoid i2c conflicts. It has no affect on how the code runs. You can still run it using busio.i2c, but using board.i2c is preferable.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-gps.

Read the docs for info on how to use it.