Open lyneca opened 4 years ago
I have this Inky wHAT display, with a resolution of 400x300. The cols field on Dimension is set to a u8 (compared to the rows - a u16). Is there a reason for this?
cols
Dimension
u8
rows
u16
Is there a reason for this?
Only that I built this crate to support the Inky pHAT, which doesn't need the type to be any bigger than u8. I can't see much issue with enlarging it.
I have this Inky wHAT display, with a resolution of 400x300. The
cols
field onDimension
is set to au8
(compared to therows
- au16
). Is there a reason for this?