I have a running program/sketch downloaded to hardware. How do I find/confirm the sketch associated to the downloaded software?
It is too late now, but you could have printed a message in setup() showing the details of the sketch or printed them on receipt of a suitable Serial or digital input.
1 Like
do you mean the written in the flash memory of the chip firmware?
normally developers (manufacturers) sticking at the chip a little strip with name of FW and(or only) its version.
I usually put this line
Serial.println(F(__FILE__));
in the setup part of my arduino sketches, so the first thing it prints to serial (atleast for programs that do print to serial at all) is the file name and folder path of the file it was compiled from.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.