0

I use Arduino Pro Mini. As I know, every MCU has a number. Different MCU has different number. How to get it ?

Gerben
  • 11,332
  • 3
  • 22
  • 34
Enhao Lan
  • 123
  • 2
  • 14

2 Answers2

3

Arduino Pro mini is based on Atmega328 which does not have a unique ID. It has only device signature which you can read if you turn on Show verbose output during upload in Arduino IDE's File > Preferences.

Gerben
  • 11,332
  • 3
  • 22
  • 34
Chupo_cro
  • 510
  • 2
  • 9
1

Could you be confusing the term micro-chip (often applied to any tiny, programmable electronic device) with the manufacturer named "Microchip" (who make the PIC series of micro-controllers, among many other products)? Microchip (the company) does make a line of products that have individually unique IDs. Most manufacturers do not provide unique IDs in their micro-controller devices, and AVR's Atmega 328 series devices do not have unique ID's.

JRobert
  • 15,407
  • 3
  • 24
  • 51