From 0859fba64d0587a020affe9d754ee371bece60e0 Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Fri, 24 Apr 2009 17:34:50 +0000 Subject: [PATCH] changed #define pins to const ints --- .../dist/examples/Communication/PhysicalPixel/PhysicalPixel.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/shared/dist/examples/Communication/PhysicalPixel/PhysicalPixel.pde b/build/shared/dist/examples/Communication/PhysicalPixel/PhysicalPixel.pde index fa285cef1..b5006ec9b 100644 --- a/build/shared/dist/examples/Communication/PhysicalPixel/PhysicalPixel.pde +++ b/build/shared/dist/examples/Communication/PhysicalPixel/PhysicalPixel.pde @@ -21,7 +21,7 @@ http://www.arduino.cc/en/Tutorial/PhysicalPixel */ -#define ledPin 13 // the pin that the LED is attached to +const int ledPin = 13; // the pin that the LED is attached to int incomingByte; // a variable to read incoming serial data into void setup() {