What are these 2 lines supposed to do?
LED_BUILTIN = LED_BUILTIN 0;
LED_BUILTIN = LED_BUILTIN 4;
How is the LED connected?
As this only runs once, only one pin is set as an OUTPUT:
pinMode(LED_BUILTIN, OUTPUT);
What are these 2 lines supposed to do?
LED_BUILTIN = LED_BUILTIN 0;
LED_BUILTIN = LED_BUILTIN 4;
How is the LED connected?
As this only runs once, only one pin is set as an OUTPUT:
pinMode(LED_BUILTIN, OUTPUT);