Here's my declaration of the class (er, method, that is) using all the global var mem:
void CommandProcessor()
And I need to correct my nomenclature. This is a field, just like setup and loop, not a class, but the documentation sez fields (functions) encapsulate their variables as private... this is why I'm confused. My function here is just like loop or setup, yet it's using global mem.
So by declaring my char array with an actual value, that's making it a const? OK -- I learned something there. I thought const needed actual "const" in front of it. But it makes sense now that you point it out. = "SOMETHING" means it's kind of stuck there, like a constant.
Or maybe just static in general? Hence in the stack.