Page 128 - PROYECTO INTEGRADOR_Neat
P. 128

EJERCICIO #55








































                  CODIGO:




                  #include <LiquidCrystal.h>

                  #include <Keypad.h>


                  LiquidCrystal lcd(A5,A4,A3,A2,A1,A0);

                  const byte filas = 4;

                  const byte columnas = 4;

                  byte pinesFilas[]  = {11,10,9,8};

                  byte pinesColumnas[] = {7,6,5,4};


                  char teclas[4][4] = {{'1','2','3','A'},

                                       {'4','5','6','B'},

                                       {'7','8','9','C'},

                                       {'*','0','#','D'}};
   123   124   125   126   127   128   129   130   131   132   133