Closed
Description
CircuitPython version
Adafruit CircuitPython 7.0.0-alpha.3-493-gc37f354d2 on 2021-07-02; FeatherS2 with ESP32S2
Code/REPL
import busio
import board
import displayio
import adafruit_displayio_ssd1306
displayio.release_displays()
i2c = busio.I2C(board.SCL, board.SDA)
display_bus = displayio.I2CDisplay(i2c, device_address=0x3C)
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=128, height=32)
Behavior
This code crashes on the final line using a Feather S2 and the STEMMA QT 0.91" OLED Display 128x32.
Description
- might be related to Kaluga not connecting via USB (since esp-idf update?) #4951
- might have started with the Update esp-idf to v4.3 #4195
- other i2c devices worked like the i2c Stemma QT Rotary Encoder
Additional information
No response