Alec Delaney
Alec Delaney
@brentru is this good to run?
I think I'll continue to touch this up when I have a little more time, but closing in the meantime.
Just digging around at open issues, my understanding of registers is also not too deep, but it looks like the sensor auto-increments the register address in the I2C call. That...
Hi @JAICHANGPARK, this is a single board computer, right? There was a happenstance in some of the libraries using Blinka that show this issue. If you upgrade Blinka to version...
@JAICHANGPARK did this end of fixing the problem?
You can check the underscore attributes for the class and use the registers mentioned there to directly read the registers. For example: ```python class BNO055_I2C(BNO055): """ Driver for the BNO055...
It looks like COMPASS MODE isn't currently set up for the library, but you should be able to manually do it for now this way: ```python import time import board...
This looks like enough duplicate code to warrant a refactoring.
This library is a candidate for refactoring based on `pylint` warning of duplicate code. The solution for this library would be to refactor the code to not have duplicated portions...
Not a totally expert here, but I imagine the PI is slower because the operating system is managing a lot more resources than the Pico. Additionally, I believe the implementation...