Compiler Error 283
qualified name is not allowed¶
A qualified name such as TextLCD::locate wasn't expected at this point in the code. For example you can't have such a method definition inside of another function definition.
void TextLCD::locate(int column, int row); {
_column = column;
_row = row;
}