I tried using the Arduino Nano component.
However, this very simple sketch to turn on the LED doesn't look working.
const int ledPin = 13;
void setup() {
pinMode(ledPin, OUTPUT);
digitalWrite(ledPin, HIGH);
}
void loop() {
}
5V is applied between the 5V and GND pins
The ON led is active
The L led turns on when I press the reset button on the board
The L led should be on because HIGH is written, but it is off
This sketch works on Wokwi
Here are my project file and screenshot:
Thank you, looks working after applying 7.0V to VIN and pressing RESET.
Set it to 6.1 and try it again ☺️
Arduino required at least 6.0 on VIN according to official docs