You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there is an issue when using a single-byte command for sleep/wake. For this particular library, the error occurs when attempting to construct the "send" buffer vs the 4-Wire implementations, and apparently as well in the "core" CircuitPython images for micro-controllers.
Example from the SSD1306 driver (as mentioned above):
(0xAE, b"")
(0xAE, [])
Previous version (2.0.1) used the first form, but that did not work on Blinka, which I was using at the time. Version 2.0.2 incorporated my change, the second form.
I do not have all the available interface devices needed to test "all the changes", but my opinion is that the least disruptive would be to update this library's I2C implementation to be more forgiving and "revert" the SSD1306 change in a new 2.0.3 version.
The text was updated successfully, but these errors were encountered:
As referenced in the following:
there is an issue when using a single-byte command for sleep/wake. For this particular library, the error occurs when attempting to construct the "send" buffer vs the 4-Wire implementations, and apparently as well in the "core" CircuitPython images for micro-controllers.
Example from the SSD1306 driver (as mentioned above):
(0xAE, b"")
(0xAE, [])
Previous version (2.0.1) used the first form, but that did not work on Blinka, which I was using at the time. Version 2.0.2 incorporated my change, the second form.
The following code exemplifies the issue:
I do not have all the available interface devices needed to test "all the changes", but my opinion is that the least disruptive would be to update this library's I2C implementation to be more forgiving and "revert" the SSD1306 change in a new 2.0.3 version.
The text was updated successfully, but these errors were encountered: