Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Change hardcoded Pin 13 to LED_BUILTIN
  • Loading branch information
ubidefeo authored Jun 13, 2022
commit eb581044c97f645f734d92d01b33ab362aa5a214
2 changes: 1 addition & 1 deletion examples/04.Communication/PhysicalPixel/PhysicalPixel.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
https://www.arduino.cc/en/Tutorial/BuiltInExamples/PhysicalPixel
*/

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

void setup() {
Expand Down