Electronic – arduino – What are the most common ways to fry an arduino?

arduinohardware

I've fried two Arduinos before: one was an Uno, which I killed with too high of an input voltage, and the other was the ADK version of the Mega, which I never was able to conclusively determine what went wrong. This got me thinking: what are some things (perhaps not immediately obvious) that will damage Arduinos?

Best Answer

Some I can think of that people have done...

  1. Connecting more than 6 volts to the 5V pin. (The two ATmega chips used on most Arduino boards have an absolute max of 6V.)
  2. Connecting more than VCC (typically 5 volts) to any of the I/O pins.
  3. Not current limiting the I/O pins to less than 40mA. (E.g. driving a motor directly or not using a current limiting resistor with a LED)
  4. Connecting less than 5 volts to GND and GND to Vin or 5V (reversed power). Vin and Barrel jack do have a protection diode, but it isn't always enough.
  5. Connecting a 5 volt supply to the 5V pin while connected to USB.
  6. Changing connections while powered -- never do this!
  7. Not using flyback diodes with inductive components like motors, relays, and solenoids.

On the Uno and Mega2560 boards, which use an ATmega8u2 or 16u2 for the USB to Serial converter, it seems like whenever someone accidentally connects 12V to an I/O pin it gets blown. I don't fully understand why, but it seems like a trend.