Using Array to toggle outputs
Hi,I want to try use an array to set particulars outputs, base on values in that arraysI have initiated two dimensional array like in example below:uint8_t obrPr[4][4] = { {0,0,1,1}, {1,1,0,0}, {0,1,1,0}, {1,0,0,1} };This is sequences...