adafruit / Adafruit_CircuitPython_BNO08x

Helper library for the Hillcrest Laboratories BNO080 IMU
MIT License
22 stars 29 forks source link

UART bardrate wrong in examples #46

Open PaddyCube opened 10 months ago

PaddyCube commented 10 months ago

According to your documentation here https://learn.adafruit.com/adafruit-9-dof-orientation-imu-fusion-breakout-bno085/python-circuitpython

the baud rate should be set to 115200

from adafruit_bno08x.uart import BNO08X_UART

import serial
uart = serial.Serial("/dev/serial0", 115200)

bno = BNO08X_UART(uart)

but this doesn't work. After digging some time, I found that you use a baud rate of 3,000,000 i the examples of the circuit python library.

So I would ask you to change your valuable and clear instructions to the correct value

jason-jaia commented 9 months ago

We found this as well.

Tekunalogy commented 9 months ago

fixed in #48