Блок -схема онлайн
Best one is
https://online.visual-paradigm.com/diagrams/solutions/free-flowchart-maker-online/
no login and works fine <3
BradBot_1
Best one is
https://online.visual-paradigm.com/diagrams/solutions/free-flowchart-maker-online/
no login and works fine <3
Best one:
https://www.lucidchart.com/pages/examples/flowchart-maker
note: must login.
int set_user_pattern(int row, int col)
{
if(row > LED_MATRIX_ROW - 1)
{
printf("ERROR: %s: %d: Out of range \n", __FUNCTION__, __LINE__);
return 1;
}
if(col >= LED_MATRIX_COLUMN)
{
int req_shift = col - LED_MATRIX_COLUMN ;
int shift;
for (shift = 0 ; shift < req_shift; shift++)
{
shiftLeft();
}
led_matrix_page_rendering(row, LED_MATRIX_COLUMN - 1);
}
else
{
led_matrix_page_rendering(row, col);
}
return 0;
}