File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 27
27
modules to read latitude, longitude, and more.
28
28
29
29
* 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
+
30
44
"""
31
45
import time
32
46
@@ -59,7 +73,7 @@ def _parse_float(nmea_data):
59
73
# lint warning about too many attributes disabled
60
74
#pylint: disable-msg=R0902
61
75
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
63
77
modules to read latitude, longitude, and more.
64
78
"""
65
79
def __init__ (self , uart ):
You can’t perform that action at this time.
0 commit comments