2

I made a working model of Bluetooth light control with arduino and Bluetooth. Everything worked fine and then after some time I connected the circuit again it didn't work and the pins 7,10,11,12 aren't working . I was using a Bluetooth shield but I tried the simple LED flash program and even that's not working .

Please suggest any good way of making it working again or at least explain what happened with it.

sachleen
  • 7,525
  • 4
  • 39
  • 57

1 Answers1

6

Try running the blink LED, on a different terminals. If the LED is working properly, then most likely the pins are destroyed. Why are they destroyed? Most likely, you've withdrawn more current than the pins can actually provide.

According to the datasheet of the Arduino uno, the IO pins can handle up to 40mA.

enter image description here

The only possible way to solve this problem is to change the IC (Atmega328) by another one. It's not guranteed that it will work, but the microcontroller is reletively cheap.

The definite answer can not be determined unless you showed us a schematic of your connection.

Adel Bibi
  • 211
  • 1
  • 4
  • Note that a plain ATmega328 will not have a bootloader and would need ISP programming. – Cybergibbons Mar 16 '14 at 10:33
  • But it's also easy to find ATmega328 with Arduino UNO bootloader flashed in already; then the unit price may increase a little bit though (~$1) – jfpoilpret Mar 16 '14 at 11:08