From 5c1bf71f34ad9dfebd3143c2e45cb104d4c362c4 Mon Sep 17 00:00:00 2001 From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Thu, 6 Oct 2022 17:12:45 -0400 Subject: [PATCH] Add commented out busio import --- examples/gps_satellitefix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/gps_satellitefix.py b/examples/gps_satellitefix.py index 37de93b..c96d0db 100644 --- a/examples/gps_satellitefix.py +++ b/examples/gps_satellitefix.py @@ -15,6 +15,7 @@ # a slightly higher timeout (GPS modules typically update once a second). # These are the defaults you should use for the GPS FeatherWing. # For other boards set RX = GPS module TX, and TX = GPS module RX pins. +# import busio # uart = busio.UART(board.TX, board.RX, baudrate=9600, timeout=10) # for a computer, use the pyserial library for uart access