mikemountain/nfl-led-scoreboard

64x64 board

Irishking03 opened this issue · 4 comments

Just wondering if there was a 64x64 board option.

Did you try adding --led-rows=64 --led-cols=64

I edited the utils.py so I don't have to add the stuff at the end and can just run the main.py file.

parser.add_argument("--led-rows", action="store", help="Display rows. 16 for 16x32, 32 for 32x32. (Default: 32)", default=64, type=int)
parser.add_argument("--led-cols", action="store", help="Panel columns. Typically 32 or 64. (Default: 64)", default=64, type=int)

or

options.rows = 64
options.cols = 64

But I'm still learning so I'm not sure which way is better.