Closed catfact closed 4 months ago
the implementation of grid refresh in device_monome.c always assumes 4 quads of LEDs.
device_monome.c
after a call to g.all(), all four quads are marked dirty, so 4x map messages will be sent on refresh.
g.all()
refresh
this doesn't appear to cause any problems with most devices, but it seems like older/slower grid models might respond strangely. (flickering, etc.)
so we should probably teach device_monome to respect device size.
device_monome
fixed in #1358 <33
the implementation of grid refresh in
device_monome.c
always assumes 4 quads of LEDs.after a call to
g.all()
, all four quads are marked dirty, so 4x map messages will be sent onrefresh
.this doesn't appear to cause any problems with most devices, but it seems like older/slower grid models might respond strangely. (flickering, etc.)
so we should probably teach
device_monome
to respect device size.