From e6f674cc3ff70677c90373f1e3bff3a81cc91e73 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Wed, 23 Sep 2009 22:21:15 +0000 Subject: [PATCH] Fixing capitalization of "pin". --- build/shared/examples/Sensors/ADXL3xx/ADXL3xx.pde | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/shared/examples/Sensors/ADXL3xx/ADXL3xx.pde b/build/shared/examples/Sensors/ADXL3xx/ADXL3xx.pde index 0d9e15abd..7e89dcb64 100644 --- a/build/shared/examples/Sensors/ADXL3xx/ADXL3xx.pde +++ b/build/shared/examples/Sensors/ADXL3xx/ADXL3xx.pde @@ -25,11 +25,11 @@ */ // these constants describe the pins. They won't change: -const int groundPin = 18; // analog input pin 4 -- ground -const int powerPin = 19; // analog input pin 5 -- voltage -const int xPin = 3; // x-axis of the accelerometer -const int yPin = 2; // y-axis -const int zPin = 1; // z-axis (only on 3-axis models) +const int groundpin = 18; // analog input pin 4 -- ground +const int powerpin = 19; // analog input pin 5 -- voltage +const int pin = 3; // x-axis of the accelerometer +const int ypin = 2; // y-axis +const int zpin = 1; // z-axis (only on 3-axis models) void setup() {