MajicDesigns / MD_Parola

Library for modular scrolling LED matrix text displays
GNU Lesser General Public License v2.1
428 stars 135 forks source link

Feature Request ? #89

Closed woeperbe closed 3 years ago

woeperbe commented 3 years ago

I'am using latest version ;-)

Is there a method to set the hardware type in the Parola library just as in the MD_MAX72xx library ?

This works perfect in my code for the MD_MAX library but i cannot find the corresponding function call for Parola ?

M.setModuleType(MD_MAX72XX::ICSTATION_HW);

Thanks for your nice work

MajicDesigns commented 3 years ago

Set it when you create the object. Or you can access the MD_MAX72xx object and use that library’s methods. getGaphicObject() or something like that, from memory.

woeperbe commented 3 years ago

That works perfect ! You made my day :-)

Matrix.getGraphicObject()->setModuleType(MD_MAX72XX::ICSTATION_HW);

Thanks again :-) :-)