Hello, I haven’t been able to blink an external LED via digitalWrite, and not a single article can explain why.
Details:
• The device used is an Arduino Nano Every, with wires connected to pins 19 (ground) and 30 (D12, manual says it’s “SPI MISO; can be used as GPIO”).
• LED does light when attached to either pin 2 or 3. (“+3V3” and “+5V”)
I tried and replaced every component, except the Arduino itself. The Arduino is brand new, from Arduino's own website, and not been exposed to anything other than voltage that it itself produced.
Code used:
int LED = 30;
void setup() {
pinMode(LED, OUTPUT);
}
void loop() {
digitalWrite(LED, HIGH);
delay(1000);
digitalWrite(LED, LOW);
delay(1000);
}
I’ve been up and down the web trying to anything on this, to no luck. Any help would be very much appreciated.

