Skip to content

Commit

Permalink
Replace depreciated .show() & displayio changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RetiredWizard committed Nov 6, 2023
1 parent 1bae65c commit 8c38e82
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/ssd1675_2.13_monochrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import board
import displayio
import adafruit_ssd1675

# Starting in CircuitPython 9.x fourwire will be a seperate internal library
# rather than a component of the displayio library
try:
Expand All @@ -20,7 +21,6 @@
from displayio import FourWire



displayio.release_displays()

# This pinout works on a Feather M4 and may need to be altered for other boards.
Expand Down Expand Up @@ -52,7 +52,7 @@
g.append(t)

display.root_group = g

display.refresh()

print("refreshed")
Expand Down
1 change: 1 addition & 0 deletions examples/ssd1675_four_corners.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import displayio
import terminalio
import adafruit_ssd1675

# Starting in CircuitPython 9.x fourwire will be a seperate internal library
# rather than a component of the displayio library
try:
Expand Down
1 change: 1 addition & 0 deletions examples/ssd1675_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import board
import displayio
import adafruit_ssd1675

# Starting in CircuitPython 9.x fourwire will be a seperate internal library
# rather than a component of the displayio library
try:
Expand Down

0 comments on commit 8c38e82

Please sign in to comment.