I used the library sample "Turn LED Off and ON without issue. I had no problem modifying it to perform a couple of more specific tasks but when I tried integrating this into my actual project I run into a compile error.
Compilation error: 'SerialCommandHandler' does not name a type
The only changes I made compared to the library example was to re-name the command(s). In the breadboard testing I did using my modified version of the library example, I used the same names that I tried in my main project.
Here are the two Serial commands I'm using, this is where the compiler error points...
SerialCommandHandler.AddCommand(F("ReadSD"), Cmd_ReadSD);
SerialCommandHandler.AddCommand(F("WriteSD"), Cmd_WriteSD);
I have tried placing these prior to Void Setup, in the Void Setup section and in the Void Loop section, no luck.
Any advice would be appreciated.