Skip to content

Commit eb58104

Browse files
authored
Change hardcoded Pin 13 to LED_BUILTIN
1 parent d62f11c commit eb58104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/04.Communication/PhysicalPixel/PhysicalPixel.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
https://www.arduino.cc/en/Tutorial/BuiltInExamples/PhysicalPixel
2222
*/
2323

24-
const int ledPin = 13; // the pin that the LED is attached to
24+
const int ledPin = LED_BUILTIN; // the pin that the LED is attached to
2525
int incomingByte; // a variable to read incoming serial data into
2626

2727
void setup() {

0 commit comments

Comments
 (0)