3.3V pin isn´t working

Hello, I´m new to arduino and I might have broke my 3.3V pin. I unfortunately dont have a voltmeter so I can´t tell exacli what is going on, but any LED I connect to it wont work, whitch isnt the case for any other pin. I think that I either accidentally connected it to ground or 5V from external source. Do you know what could be wrong? And how to fix it?

Did your LED have a current limiting resistor?

Connect your 3.3V pin up to the A0 pin and run this sketch a few times. If the serial monitor consistently displays a value in the neighbourhood of 675 (assuming a 5V board), your 3.3V pin is likely just fine.

void setup() {
   Serial.begin(115200);
   Serial.println(analogRead(A0));
}

void loop() {
}
2 Likes

You can get an inexpensive one for less than the cost of two packs of cigarettes, plus shipping. It's an essential tool that's hard to do without when working with electronics.

2 Likes

The serial monitor showed around 1000. I´ve changed the codde a bit, because it didn´t work for me.
the code:

void setup() {
 pinMode(A0, INPUT_PULLUP);
}
void loop() {
  Serial.begin(115200);
  Serial.println(analogRead(A0));
  delay(100);
}

You've just enabled the pullup resistor on A0, ensuring that your analogRead value is meaningless. The default configuration for A0 is fine for this test.

Sorry, after removing it it shows value around 60.

Then it's toast. Time to buy a new board and be more careful with this one. Or buy two and have a spare.

1 Like

Is there any way to save it?

It's still good, you just don't have 3.3V

1 Like

Since you're able to upload sketches, most of the board is still okay(ish - I wouldn't trust it for anything critical). I wouldn't try powering it from the barrel jack, since the 3.3V output is used to determine whether or not to cut off the USB power in that configuration.

But unless you have a hot air station and your SMD rework skills are honed (which, if you're asking the question, the answer is no), the 3.3V output is history.

Ok, thank you.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.