I have here an Arduino Duemilanove and it was working properly before.
As I am working on a project that requires a solar photovoltaic system, I plugged the 12V dc supply into the arduino and it shows a proper display on my lcd, however, after a while I got these black boxes on the first row of the lcd.
Whats worst is that I cannot restart the arduino. I also tried uploading a blink program but it also does not work.
Anyone knows whats going on here?
I have attached a picture of my circuit
What I am trying to do is at the beginning, the lcd displays a message, when the sensor detects something, the message changes and displays the number of times the sensor has detected something.
The code is as shown below:
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);
const int sensorPin = 7;
int sensorProxCounter = 0;
int sensorState = 0;
int lastSensorState = 0;
Could it be that 12V is just too much for it to handle? Because I had 2 of the arduinos and both were connected to the 12V, so when I switch to the other one, I could not solve the problem.
I solved this problem before using trail an error (by pluging in the usb and 12V together and removing one of them) but recently, something blew on one of the boards as shown on the photo. I had no idea what it is.
Could it be that the problem is with the LCD display? I am planning to buy an arduino UNO-R3 but not sure if that would fix it.
I think the arrow is pointing to reverse polarity protection diode.
Its only rated for 1A, if you blew that you are trying to get too much current into the board.
With no power connected to the board put a meter across the inner barrel connector and Gnd. Should measure something 1Mohm, 2Mohm, very high resistance.
If you are seeing very low resistance, then there is good chances something is shorted.
ya there is no resistance in the one that blew, and there is 2Mohm in the one that did not blow.
Just an additional info, my battery is a UNICELL TLA12260 12V 26AH lead acid battery.
and my solar panel is a Sunsolar AS25-12 with Rated Max Power: 25W
Rated Operating Voltage : 17.1V
Rated Operating Current :1.47A
Open-Circuit Voltage : 21.5V
Short-Circuit Current: 1.65A
I bought the arduino uno r3 and everythings well. But I'm still a little scared about plugging in the 12V. Is it possible to use a regulator to reduce the input voltage?
Wow! Thanks for the suggestion. I have with me a 9V and a 5V regulator, can I use it instead of a DC/DC converter? Ordering from mouser requires a shipping fee of $30 and it would not be worth it if I buy the converter itself.