Intenté usar mi MSP430G2553 launchpad con un teclado usando
- enlace
- enlace
- enlace
- enlace (acabo de intentar el esquema con el código Energia)
- enlace (imprime líneas en blanco en la misma fila, los botones no funcionan excepto 2,5,8,0 y se imprimen "y")
.
#include <Keypad.h>
const byte ROWS = 4; //four rows
const byte COLS = 3; //three columns
char keys[ROWS][COLS] = {
{'1','2','3'},
{'4','5','6'},
{'7','8','9'},
{'#','0','*'}
};
//byte rowPins[ROWS] = {5, 4, 3, 2}; //connect to the row pinouts of the keypad
//byte colPins[COLS] = {8, 7, 6}; //connect to the column pinouts of the keypad
byte rowPins[ROWS] = { P1_5, P1_4, P1_3, P1_2 };
// Connect keypad COL0, COL1 and COL2 to these Arduino pins.
byte colPins[COLS] = { P1_0, P1_7, P1_6 };
Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.print("Serial test\n");
delay(100);
char key = keypad.getKey();
if (key != NO_KEY){
Serial.println(key);
}
}
Ninguno de ellos funciona, solo imprimen "Prueba en serie" y eso es cuando presiono RESET. Intenté usar la última biblioteca de teclado del sitio de ARDUINO o las bibliotecas que se encuentran en esos tutoriales.
¿Necesito una forma diferente de conectar el teclado al launchpad o necesito una biblioteca diferente?