selyunin / bno055_usb_stick_py

BNO055 USB Stick Linux Python 3 Driver
MIT License
12 stars 2 forks source link

Raspberry pi support #5

Closed shantnavagarwal closed 4 years ago

shantnavagarwal commented 4 years ago

I am able to use this library on my laptop running ubuntu. However, I am not able to connect to the bno055 USB stick when using this code on a raspberry pi. I have installed all the dependencies. I am getting the exception "BNO USB stick not connected"

selyunin commented 4 years ago

Hi @shantnavagarwal

It is in general not enough information to pinpoint what exactly goes wrong in your case.

Try to troubleshoot following the instructions from the closed issue, in particularly starting from this comment: https://github.com/selyunin/bno055_usb_stick_py/issues/3#issuecomment-502683364

Let me know if it helps.

shantnavagarwal commented 4 years ago

Hi, it is working now! I think it is quite important to enter the port while creating the BNO object.

bno_usb_stick = BnoUsbStick(port=‘/dev/ttyACM0’).

Thanks for the help!