Need help creating an Object.

PaulS:
Initialization of variables is never done in the class definition in the header file. It is always done in the source file. Any attempt to initialize variables in the class definition in the header file results in syntax errors.

There appear to me some exceptions to that. The statement
static const uint8_t iRows=8;
appears to be allowed. What is not allowed is to initialize the array.