HI,
I'm just a beginer in all that so please, don't hate if im asking about something obvious.
I want control matrix 12*8x8 display with MD_Parola.h library. There is exemple for that control (Parola_Bluetooth_Control, full code below).
I have problem witch calling animations for effect IN and OUT. Here is table.
// Data tables --------------
const textPosition_t textPosition[] = { PA_LEFT, PA_CENTER, PA_RIGHT };
const textEffect_t textEffect[] =
{
PA_PRINT, PA_SCROLL_UP, PA_SCROLL_LEFT, PA_SCROLL_RIGHT, PA_SCROLL_DOWN,
#if ENA_SCR_DIA
PA_SCROLL_UP_LEFT, PA_SCROLL_UP_RIGHT, PA_SCROLL_DOWN_LEFT, PA_SCROLL_DOWN_RIGHT,
#endif // ENA_SCR_DIA
#if ENA_WIPE
PA_WIPE, PA_WIPE_CURSOR,
#endif // ENA_WIPES
#if ENA_OPNCLS
PA_OPENING, PA_OPENING_CURSOR, PA_CLOSING, PA_CLOSING_CURSOR,
#endif // ENA_OPNCLS
#if ENA_GROW
PA_GROW_UP, PA_GROW_DOWN,
#endif // ENA_GROW
#if ENA_MISC
PA_SLICE, PA_MESH, PA_FADE, PA_DISSOLVE, PA_BLINDS, PA_RANDOM,
#endif //ENA_MISC
#if ENA_SCAN
PA_SCAN_HORIZ, PA_SCAN_VERT,
#endif // ENA_SCAN
};
So i want to call specyfic effect from that table, but i don't know how to do that, because program is done for calling one after an other, and if i want to set previous effect, i need to go throu all loop. Is there any way to call specyfic one without going throu all loop?
I will also attach a full code example if that would be helpfull.
Parola_Bluetooth_Control.ino (17.3 KB)