VIn-Pin wrong polarity - Repair?!

Hello everyone,

i own a Arduino Mega 2560. Unfortunately i applied 7.2V/DC with the wrong polarity to my VIn-Pins. It fumes a little bit and now it´s no longer working -.-
This part fumed.

What is this part?
Is there a chance to repair it?

Greetings K86

That's the 5V regulator. Does the board still work if you power it from USB? If not you probably fried other chips.

That should be about the easiest component on the board to replace. As a matter of fact, that is the culprit in another thread that I vented on this morning. If you replace it, I would do a Frankenstein on it. Use a "Lincoln Log" regulator, like a LM7805. I believe it is pin compatible with the smt unit that is currently there. Then you could use a small heat sink and use it with automotive voltage levels.

I would go with johnwasser's check. Does it power up and work with usb power?

Ah interesting. Will test USB asap.
Could this replace the original part?

Greetings K86

Yes it will work.

You may need to bend the pins a bit to fit in narrower solder pads

Nice.
But for much ouput current? 1A, 2A, 3A? ...

from your own link:

If adequate heat sinking is provided, they can deliver over 1 A output current.

500mA ( like the USB supply ) should be fine...

Great.
Thank you buddys :slight_smile:

EDIT:
USB connection still works. Probably it´s the 5V regulator.

I accidentally reversed the polarity on a lilypad same atmega on the uno and others not the mega version..

the atnega smoked ! Once it cooled down it worked again.. :slight_smile:

This is Harrie and I blew the processor of my Atmega 2560. I removed the controller and replaced it with a new one. It does not work, so I first thought there might not be a bootloader inside, but I checked and also the clock is not running. Can anybody help me out?

Harrie

but I checked and also the clock is not running

How did you test this? Osciloscope?
Did you test the power on atmega pins?
Did you solder it well?

harrievandalen:
This is Harrie and I blew the processor of my Atmega 2560. I removed the controller and replaced it with a new one. It does not work, so I first thought there might not be a bootloader inside, but I checked and also the clock is not running. Can anybody help me out?

Harrie

Impressive SMT skills! If you didn't program a bootloader onto the replacement chip it won't have one. You need to use the ICSP header and some programmer (or another Arduino) to try programming the 2560.

I think the AVR default fuses use the internal clock so you wouldn't expect to see the xtal oscillator running till it was first programmed - but could be wrong, anyone know for definite?

I think the AVR default fuses use the internal clock so you wouldn't expect to see the xtal oscillator running till it was first programmed - but could be wrong, anyone know for definite?

You are correct.

9.3.1       Default Clock Source 
                             The device is shipped with internal RC oscillator at 8.0 MHz and with the fuse CKDIV8 pro- 
                             grammed, resulting in 1.0 MHz system clock. The startup time is set to maximum and time-out 
                             period enabled. (CKSEL = "0010", SUT = "10", CKDIV8 = "0"). The default setting ensures that 
                             all users can make their desired clock source setting using any available programming interface.

Don