Skip to content

Commit 4f89bdf

Browse files
committed
updated docstring info
1 parent f3cc460 commit 4f89bdf

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

adafruit_gps.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@
2727
modules to read latitude, longitude, and more.
2828
2929
* Author(s): Tony DiCola
30+
31+
Implementation Notes
32+
--------------------
33+
34+
**Hardware:**
35+
36+
* Adafruit `Ultimate GPS Breakout <https://www.adafruit.com/product/746>`_
37+
* Adafruit `Ultimate GPS FeatherWing <https://www.adafruit.com/product/3133>`_
38+
39+
**Software and Dependencies:**
40+
41+
* Adafruit CircuitPython firmware for the ESP8622 and M0-based boards:
42+
https://github.com/adafruit/circuitpython/releases
43+
3044
"""
3145
import time
3246

@@ -59,7 +73,7 @@ def _parse_float(nmea_data):
5973
# lint warning about too many attributes disabled
6074
#pylint: disable-msg=R0902
6175
class GPS:
62-
""" GPS parsing module. Can parse simple NMEA data sentences from serial GPS
76+
"""GPS parsing module. Can parse simple NMEA data sentences from serial GPS
6377
modules to read latitude, longitude, and more.
6478
"""
6579
def __init__(self, uart):

0 commit comments

Comments
 (0)