diff --git a/examples/gps_datalogging.py b/examples/gps_datalogging.py index cc6b540..0f65005 100644 --- a/examples/gps_datalogging.py +++ b/examples/gps_datalogging.py @@ -51,7 +51,7 @@ # uart = serial.Serial("/dev/ttyUSB0", baudrate=9600, timeout=10) # If using I2C, we'll create an I2C interface to talk to using default pins -# i2c = busio.I2C(board.SCL, board.SDA) +# i2c = board.I2C() # Create a GPS module instance. gps = adafruit_gps.GPS(uart) # Use UART/pyserial diff --git a/examples/gps_echotest.py b/examples/gps_echotest.py index 57c970f..326255e 100644 --- a/examples/gps_echotest.py +++ b/examples/gps_echotest.py @@ -18,7 +18,7 @@ # uart = serial.Serial("/dev/ttyUSB0", baudrate=9600, timeout=10) # If using I2C, we'll create an I2C interface to talk to using default pins -# i2c = busio.I2C(board.SCL, board.SDA) +# i2c = board.I2C() # Create a GPS module instance. gps = adafruit_gps.GPS(uart) # Use UART/pyserial diff --git a/examples/gps_simpletest.py b/examples/gps_simpletest.py index c7fb49f..9c2e4dc 100644 --- a/examples/gps_simpletest.py +++ b/examples/gps_simpletest.py @@ -18,7 +18,7 @@ # uart = serial.Serial("/dev/ttyUSB0", baudrate=9600, timeout=10) # If using I2C, we'll create an I2C interface to talk to using default pins -# i2c = busio.I2C(board.SCL, board.SDA) +# i2c = board.I2C() # Create a GPS module instance. gps = adafruit_gps.GPS(uart, debug=False) # Use UART/pyserial