Skip to content

Commit fe175e7

Browse files
committed
ParallelBus change
1 parent 74eaa1b commit fe175e7

File tree

1 file changed

+2
-1
lines changed
  • CircuitPython_displayio/displayio_parallelbus

1 file changed

+2
-1
lines changed

CircuitPython_displayio/displayio_parallelbus/code.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44

55
import board
66
import displayio
7+
import paralleldisplaybus
78

89
# Release any previously configured displays
910
displayio.release_displays()
1011

1112
# Setup the display bus
1213
# Tested with a Metro M4 Express
13-
display_bus = displayio.ParallelBus(data0=board.D13,
14+
display_bus = paralleldisplaybus.ParallelBus(data0=board.D13,
1415
command=board.D6,
1516
chip_select=board.D7,
1617
write=board.D5,

0 commit comments

Comments
 (0)