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
It looks like there is an internal _ROTATION_OFFSET property that only gets applied at init time. Specific hardware is the Adafruit 128x64 OLED FeatherWing.
I have attached example code to illustrate the issue.
import neopixel
import board
import time
import displayio
import adafruit_displayio_sh1107
led_neo_onboard = neopixel.NeoPixel(
pin = board.NEOPIXEL,
n = 1,
brightness = 1,
)
led_neo_onboard[0] = (0, 0, 0)
bus_i2c = board.I2C()
# Compatibility with both CircuitPython 8.x.x and 9.x.x.
# Remove after 8.x.x is no longer a supported release.
try:
from i2cdisplaybus import I2CDisplayBus
except ImportError:
from displayio import I2CDisplay as I2CDisplayBus
time.sleep(1)
led_neo_onboard[0] = (2, 0, 0)
print("Release the hounds! er, displays.")
displayio.release_displays()
time.sleep(1)
led_neo_onboard[0] = (1, 1, 0)
print("Make the bus object")
display_bus = I2CDisplayBus(bus_i2c, device_address=0x3C)
time.sleep(1)
led_neo_onboard[0] = (0, 2, 0)
print("Make the display object")
display_sh1107 = adafruit_displayio_sh1107.SH1107(
display_bus,
width = 128,
height = 64,
rotation = 0,
)
time.sleep(1)
led_neo_onboard[0] = (0, 1, 1)
print("Rotate the display to 0 degrees")
display_sh1107.rotation = 0
while True:
pass
The text was updated successfully, but these errors were encountered:
It looks like there is an internal _ROTATION_OFFSET property that only gets applied at init time. Specific hardware is the Adafruit 128x64 OLED FeatherWing.
I have attached example code to illustrate the issue.
The text was updated successfully, but these errors were encountered: