Interstate 75 with multiple HUB-75 LED matrix panels

Running this;

from interstate75 import Interstate75

i75 = Interstate75(display=Interstate75.DISPLAY_INTERSTATE75_128X32)
graphics = i75.display

MAGENTA = graphics.create_pen(255, 0, 255)
BLACK = graphics.create_pen(0, 0, 0)
WHITE = graphics.create_pen(255, 255, 255)

graphics.set_pen(BLACK)
graphics.clear()

graphics.set_pen(MAGENTA)
graphics.text("hello", 1, 10, scale=2)
graphics.set_pen(WHITE)
graphics.text("world", 65, 10, scale=2)
i75.update(graphics)

Gets me

HELLO (top display)
WORLD (bottom display