Skip to content

Commit eda6e99

Browse files
committed
Updated interstate module
1 parent 1343f23 commit eda6e99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

micropython/modules_py/interstate75.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ class Interstate75:
3232
# Count Constants
3333
NUM_SWITCHES = 2
3434

35-
def __init__(self, display, panel_type=hub75.PANEL_GENERIC, stb_invert=False):
35+
def __init__(self, display, panel_type=hub75.PANEL_GENERIC, stb_invert=False, color_order=hub75.COLOR_ORDER_RGB):
3636
self.display = PicoGraphics(display=display)
3737
self.width, self.height = self.display.get_bounds()
38-
self.hub75 = hub75.Hub75(self.width, self.height, panel_type=panel_type, stb_invert=stb_invert)
38+
self.hub75 = hub75.Hub75(self.width, self.height, panel_type=panel_type, stb_invert=stb_invert, color_order=color_order)
3939
self.hub75.start()
4040

4141
# Set up the user switches

0 commit comments

Comments
 (0)