From 8ca3f95c66c6beef9ba1b4fa05fdebacc00e3868 Mon Sep 17 00:00:00 2001 From: CiscoTheWolf Date: Thu, 18 May 2023 10:28:54 +0200 Subject: [PATCH] updated the setting to be specific to my set-up --- rpi/roy-test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpi/roy-test.py b/rpi/roy-test.py index dcae38e..a23dd7f 100644 --- a/rpi/roy-test.py +++ b/rpi/roy-test.py @@ -6,7 +6,8 @@ import time # Configuration for the matrix options = RGBMatrixOptions() options.rows = 32 -options.chain_length = 1 +options.cols = 64 +options.chain_length = 2 options.parallel = 1 options.hardware_mapping = 'regular' # If you have an Adafruit HAT: 'adafruit-hat' matrix = RGBMatrix(options = options)