Hello!
This is my first post, I read the guidance and hope not to mess up. But I accept tips on making better posts. Also, English is not my first language, so please be patient
I was making some tests with my new Arduino Nano 33 BLE Sense and ran into some trouble. I was trying to make a circuit to power an analog non-addressable RGB LED strip that works with 12V.
I've adapted the instructions from here:
https://learn.adafruit.com/rgb-led-strips/usageAs this version of the arduino board only provides 3.3V on its outputs, I used a logic level converter (
https://learn.sparkfun.com/tutorials/retired---using-the-logic-level-converter). I programmed the digital output to high and it worked by powering it either from the USB or the Vin. I've attached the circuit I made at Fritzing.
After just putting HIGH to the output, I wanted to PWM it. So I got a simple code for that and put the code to load. It can take a while on my computer, so I got distracted by other activities. When I returned to the Arduino software, I noticed that it failed to load the code because the Arduino disconected. I checked the board and the RGB LED was fully red and the Nina module was super hot. At this moment, I realize that I was powering the Arduino board trough both USB and Vin at same time. I've read around that it is not supposed to be an issue, but I think it is important to mention. Now when I try to power the board (either from USB or Vin) it only lights the RGB LED red and start heating the Nina module.
This is the code I tried to load:
int ledPin = 11;
float sinVal;
int ledVal;
void setup()
{
pinMode(ledPin, OUTPUT);
}
void loop()
{
for (int x = 0; x < 180; x++)
{
// converte graus para radianos e então obtém o valor do seno
sinVal = (sin(x * (3.1412 / 180)));
ledVal = int(sinVal * 255);
analogWrite(ledPin, ledVal);
delay(25);
}
}
So, after reading some posts here in the forum where people mention burned diodes, I decided to measure the components and I believe I found 4 capacitors and 1 resistor short-circuited. I checked the schematics, but I cannot identify which ones are the burned components. I circuled the components in the image below. I also attached the schematics.
Is this really the problem? Could someone help me to identify the value of these components? What have caused this on first place?
Any help is appeciated, thank you!

