-
Notifications
You must be signed in to change notification settings - Fork 5
Fixes issue 17 - sleep() throws error #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
b"" does not pass properly to the i2cdisplay function as it tries to concatenate a list with a byte string.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This well send an extra null byte. Did you try []
instead?
Removed extra null byte being sent to the bus.
I had not tried that. Confirmed that it works in my code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, I like it 😀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me. The requested change was made in the latest commit.
Thank you @dargus!
Updating https://github.com/adafruit/Adafruit_CircuitPython_BME680 to 3.7.6 from 3.7.5: > Merge pull request adafruit/Adafruit_CircuitPython_BME680#71 from FoamyGuy/issueadafruit/Adafruit_CircuitPython_BME680#69 Updating https://github.com/adafruit/Adafruit_CircuitPython_DisplayIO_SH1106 to 1.3.3 from 1.3.2: > Merge pull request adafruit/Adafruit_CircuitPython_DisplayIO_SH1106#18 from dargus/main Updating https://github.com/adafruit/Adafruit_CircuitPython_Bundle/circuitpython_library_list.md to NA from NA: > Updated download stats for the libraries
b"" does not pass properly to the i2cdisplay function as it tries to concatenate a list with a byte string.