I have a few arduino boards kicking around and I never can seem to remember what's loaded on them. I'm adding code to my sketches going forward to correct this:
String sketch = "Ser2";
then later when the correct command is sent serially:
Serial.println ("Sketch: " + sketch);
In using this as a template, it would be nice if I didn't need to change "Ser2" to whatever for each new sketch.
I was hoping there might be something #Defined by the IDE.
Anyone know of anything?
Thanks.
-Dave