Skip to content

Commit

Permalink
Merge pull request #48 from Tekunalogy/main
Browse files Browse the repository at this point in the history
Fix baud rate for USB Serial Example
  • Loading branch information
FoamyGuy authored Apr 21, 2024
2 parents 04d938e + 6daec31 commit 43118d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/bno08x_simpletest_uart.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@

# uncomment and comment out the above for use with Raspberry Pi
# import serial
# uart = serial.Serial("/dev/serial0", 115200)
# uart = serial.Serial("/dev/serial0", 3000000)

# for a USB Serial cable:
# for USB Serial (via FTDI cable):
# import serial
# uart = serial.Serial("/dev/ttyUSB0", baudrate=115200)
# uart = serial.Serial("/dev/ttyUSB0", baudrate=3000000)

bno = BNO08X_UART(uart)

Expand Down

0 comments on commit 43118d7

Please sign in to comment.