Is it possible to know which program uploaded

Hi,
How to find which code uploaded into an Arduino UNO?
Thanks
Adam

1 Like

Hello
Add these lines to the setup:

Serial.begin(9600);
  Serial.print("File   : "), Serial.println(__FILE__);
  Serial.print("Date   : "), Serial.println(__DATE__);
1 Like

Thank you.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.