/*
Matriz
*/
#include <Arduino.h>
template<size_t nRows, size_t nCols>
void doStuff(uint8_t (&input)[nRows][nCols]){
Serial.print("nRows = ");
Serial.print(nRows);
Serial.print(", nCols = ");
Serial.println(nCols);
}
void setup(){
Serial.begin(115200);
delay(2000);
uint8_t a[10][20];
uint8_t b[5][2];
doStuff(a);
doStuff(b);
}
void loop(){
}