Teclado del Launchpad MPS430

2

Intenté usar mi MSP430G2553 launchpad con un teclado usando

.

#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?

    
pregunta Cagurtay

2 respuestas

2
  

P1_2 es el pin de RX para Serial. Desde que llamas a Serial después de ti   instanciar el teclado, las cosas se ensuciarán.

Fuente

Usar otro pin en lugar de eso soluciona el problema.

    
respondido por el Cagurtay
-2
#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("Full Version test /b/ script a test\n");
    delay(100); 
  char key = keypad.getKey();

  if (key != NO_KEY){
    Serial.println(key);
  }

Copie esto y obtendrá la versión completa para el EDM que está utilizando. o simplemente descargar el de la expansión de tiempo. funciona para las versiones x32 de windows y superiores y no lo usa para computadoras Macintosh porque no es compatible.

    
respondido por el Mother EDM

Lea otras preguntas en las etiquetas