diff options
author | Christopher Baines <cbaines8@gmail.com> | 2011-09-12 09:54:03 +0100 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2011-09-12 09:54:03 +0100 |
commit | 852306221f4adcaf2ea9edb68153ea6090b68803 (patch) | |
tree | ddd7ee44c62a4f22ddb30db717a86eba48596407 /Arduino/ButtonMatrix | |
parent | 8962f50d7c24d428f0fdc2d1d90c65d4f9e7955c (diff) | |
download | punchingbag-852306221f4adcaf2ea9edb68153ea6090b68803.tar punchingbag-852306221f4adcaf2ea9edb68153ea6090b68803.tar.gz |
Commit to move to other laptop due to technical dificulties.
Diffstat (limited to 'Arduino/ButtonMatrix')
-rwxr-xr-x | Arduino/ButtonMatrix/ButtonMatrix.pde | 112 |
1 files changed, 64 insertions, 48 deletions
diff --git a/Arduino/ButtonMatrix/ButtonMatrix.pde b/Arduino/ButtonMatrix/ButtonMatrix.pde index 99c879d..702e487 100755 --- a/Arduino/ButtonMatrix/ButtonMatrix.pde +++ b/Arduino/ButtonMatrix/ButtonMatrix.pde @@ -4,12 +4,21 @@ const byte ROWS = 19; const byte COLS = 8; // these constants describe the pins for the acellarometer . 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 = A3; // x-axis of the accelerometer -const int ypin = A2; // y-axis -const int zpin = A1; // z-axis (only on 3-axis models) -const int selfTest = A0; +const int agroundpin = A4; // analog input pin 4 -- ground +const int apowerpin = A5; // analog input pin 5 -- voltage +const int axpin = A3; // x-axis of the accelerometer +const int aypin = A2; // y-axis +const int azpin = A1; // z-axis (only on 3-axis models) +const int aselfTest = A0; + +// these constants describe the pins for the acellarometer . They won't change: +const int bgroundpin = A12; // analog input pin 4 -- ground +const int bpowerpin = A13; // analog input pin 5 -- voltage +const int bxpin = A11; // x-axis of the accelerometer +const int bypin = A10; // y-axis +const int bzpin = A9; // z-axis (only on 3-axis models) +const int bselfTest = A8; + const int id = 1; @@ -20,28 +29,28 @@ const int id = 1; */ char keys[COLS][ROWS] = { { - 1, 9, 17, 25, 33, 41, 49, 57, 65, 73, 81, 89, 97, 105, 113, 121, 129, 137, 145 } + 1, 9, 17, 25, 33, 41, 49, 57, 65, 73, 81, 89, 97, 105, 113, 121, 129, 137, 145 } , { - 2, 10, 18, 26, 34, 42, 50, 58, 66, 74, 82, 90, 98, 106, 114, 122, 130, 138, 146 } + 2, 10, 18, 26, 34, 42, 50, 58, 66, 74, 82, 90, 98, 106, 114, 122, 130, 138, 146 } , { - 3, 11, 19, 27, 35, 43, 51, 59, 67, 75, 83, 91, 99, 107, 115, 123, 131, 139, 147 } + 3, 11, 19, 27, 35, 43, 51, 59, 67, 75, 83, 91, 99, 107, 115, 123, 131, 139, 147 } , { - 4, 12, 20, 28, 36, 44, 52, 60, 68, 76, 84, 92, 100, 108, 116, 124, 132, 140, 148 } + 4, 12, 20, 28, 36, 44, 52, 60, 68, 76, 84, 92, 100, 108, 116, 124, 132, 140, 148 } , { - 5, 13, 21, 29, 37, 45, 53, 61, 69, 77, 85, 93, 101, 109, 117, 125, 133, 141, 149 } + 5, 13, 21, 29, 37, 45, 53, 61, 69, 77, 85, 93, 101, 109, 117, 125, 133, 141, 149 } , { - 6, 14, 22, 30, 38, 46, 54, 62, 70, 78, 86, 94, 102, 110, 118, 126, 134, 142, 150 } + 6, 14, 22, 30, 38, 46, 54, 62, 70, 78, 86, 94, 102, 110, 118, 126, 134, 142, 150 } , { - 7, 15, 23, 31, 39, 47, 55, 63, 71, 79, 87, 95, 103, 111, 119, 127, 135, 143, 151 } + 7, 15, 23, 31, 39, 47, 55, 63, 71, 79, 87, 95, 103, 111, 119, 127, 135, 143, 151 } , { - 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152 } + 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152 } }; byte colPins[COLS] = { @@ -58,18 +67,25 @@ Keypad keypad = Keypad( makeKeymap(keys), colPins, rowPins, COLS, ROWS); void setup(){ Serial.begin(9600); - Serial.println("Go"); + //Serial.println("Go"); // Provide ground and power by using the analog inputs as normal // digital pins. This makes it possible to directly connect the // breakout board to the Arduino. If you use the normal 5V and // GND pins on the Arduino, you can remove these lines. - pinMode(groundpin, OUTPUT); - pinMode(powerpin, OUTPUT); + pinMode(agroundpin, OUTPUT); + pinMode(apowerpin, OUTPUT); + //pinMode(selfTest, OUTPUT); + digitalWrite(agroundpin, LOW); + digitalWrite(apowerpin, HIGH); + //digitalWrite(selfTest, HIGH); + pinMode(bgroundpin, OUTPUT); + pinMode(bpowerpin, OUTPUT); //pinMode(selfTest, OUTPUT); - digitalWrite(groundpin, LOW); - digitalWrite(powerpin, HIGH); + digitalWrite(bgroundpin, LOW); + digitalWrite(bpowerpin, HIGH); //digitalWrite(selfTest, HIGH); + } /* Send numbers back and forth to test the integrity of the serial communication Computer sends the first byte @@ -89,37 +105,37 @@ boolean runSerialTest() { } void loop(){ - //if (Serial.peek() == 0x49) { - Serial.write(37); - //Serial.write(Serial.read()); - /*if (Serial.read() == 0x44) { - Serial.write(id); - }*/ - //} else { - // Serial.write(1); - //Serial.write(Serial.read()); - //} - - /*char customKey = keypad.getKey(); - int customKeyInt = customKey; - if (customKeyInt < 0) customKeyInt += 256; - if (customKey != NO_KEY){ - Serial.println(customKeyInt); - } - - // print the sensor values: - Serial.print(analogRead(xpin)); - // print a tab between values: - Serial.print("\t"); - Serial.print(analogRead(ypin)); - // print a tab between values: - Serial.print("\t"); - Serial.print(analogRead(zpin)); - Serial.println(); - // delay before next reading: - //delay(10);*/ + + Serial.write('B'); + Serial.print(" "); + char customKey = keypad.getKey(); + int customKeyInt = customKey; + if (customKeyInt < 0) customKeyInt += 256; + if (customKey != NO_KEY){ + Serial.print(customKeyInt); + } + Serial.println(); + + Serial.write('A'); + Serial.print(" "); + // print the sensor values: + Serial.print(analogRead(axpin)); + // print a tab between values: + Serial.print(" "); + Serial.print(analogRead(aypin)); + Serial.print(" "); + // print the sensor values: + Serial.print(analogRead(bxpin)); + // print a tab between values: + Serial.print(" "); + Serial.println(analogRead(bypin)); + // print a tab between values: + // delay before next reading: + //delay(10);*/ + delay(100); } + |