twst911302 發表於 2014-6-19 11:16:11

關於-Arduino LCD i2c + 3*4鍵盤 結合

如題Arduino LCD i2c 1602 + 3*4鍵盤 結合
當我用3*4鍵盤輸入 數字,要顯示於LCD裡,
有範例教學嗎??

avril90 發表於 2015-7-22 14:25:26

雖然一年後才回覆此主題,希望依舊能幫助到有需要的人
p.s.有問題請留言給我

#include <LiquidCrystal.h>
#include <Keypad.h>

// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
// 3x4 Keypad
const byte ROWS = 4; // 4 Rows
const byte COLS = 3; // 3 Columns

// 定義 Keypad 的按鍵
char keys = {
{'1','2','3'},
{'4','5','6'},
{'7','8','9'},
{'*','0','#'}
};

// 定義 Keypad 連到 Arduino 的接腳
byte rowPins = {32, 22, 24, 28}; // 連到 Keypad 的 4 個 Rows: Row0, Row1, Row2, Row3
byte colPins = {30, 34, 26};   // 連到 Keypad 的 3 個 Columns: Column0, Column1, Column2

// 建立 Keypad 物件
Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );


void setup() {
Serial.begin(9600);
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);


}

void loop() {
   // 讀取 Keypad 的輸入
char key = keypad.getKey();

// NO_KEY 代表沒有按鍵被按下
if (key != NO_KEY){
    // 假如有按鍵被按下,就印出按鍵對應的字元
    Serial.println(key);
    lcd.print(key);
}
}

xa5566888 發表於 2015-12-15 16:03:33

請教樓上大大
我想要做一個門禁系統,我分別寫了兩個程式
第一個:RFID配合繼電器啟動電子門鎖
第二個:利用4*4鍵盤輸入密碼,密碼正確後啟動電子門鎖
目前第一個已經成功寫出來了
第二個部分還差在 寫入密碼的程式還沒想出來..
想請教大大,如何利用4*4鍵盤寫出密碼程式、以及讓兩種程式結合再一起?

xa5566888 發表於 2015-12-15 16:04:52

這是4*4鍵盤及LCD螢幕顯示器的程式

#include <Keypad.h>
#include <Wire.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h>

//#define LCMIIC1
//#define LCMIIC2
#define LCMIIC3

/*-----( Declare Constants )-----*/
#if defined(LCMIIC1)
#define I2C_ADDR    0x20// Define I2C Address
#define BACKLIGHT_PIN7
#define En_pin4
#define Rw_pin5
#define Rs_pin6
#define D4_pin0
#define D5_pin1
#define D6_pin2
#define D7_pin3
#define BACKLIGHT_FLAGNEGATIVE
#elif defined(LCMIIC2)
#define I2C_ADDR    0x27// Define I2C Address
#define BACKLIGHT_PIN3
#define En_pin2
#define Rw_pin1
#define Rs_pin0
#define D4_pin4
#define D5_pin5
#define D6_pin6
#define D7_pin7
#define BACKLIGHT_FLAGPOSITIVE
#elif defined(LCMIIC3)
#define I2C_ADDR    0x20// Define I2C Address
#define BACKLIGHT_PIN3
#define En_pin2
#define Rw_pin1
#define Rs_pin0
#define D4_pin4
#define D5_pin5
#define D6_pin6
#define D7_pin7
#define BACKLIGHT_FLAGPOSITIVE
#else // error
#error LCM not defined
#endif

#defineLED_OFF0
#defineLED_ON1

// initialize the library with the numbers of the interface pins
LiquidCrystal_I2Clcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);
// 3x4 Keypad



const byte ROWS = 4; // 4 Rows
const byte COLS = 4; // 3 Columns

// 定義 Keypad 的按鍵
char keys = {
{'1','2','3','A'},
{'4','5','6','B'},
{'7','8','9','C'},
{'*','0','#','D'}
};

// 定義 Keypad 連到 Arduino 的接腳
byte rowPins = {2, 3,4, 5}; // 連到 Keypad 的 4 個 Rows: Row0, Row1, Row2, Row3
byte colPins = {6, 7,8, 9};   // 連到 Keypad 的 3 個 Columns: Column0, Column1, Column2

// 建立 Keypad 物件
Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );


void setup()   
{
Serial.begin(9600);
lcd.begin (16,2);
   
lcd.print("password:");
lcd.setBacklightPin(BACKLIGHT_PIN,BACKLIGHT_FLAG);

lcd.setBacklight(LED_ON);

lcd.setCursor(0, 1);
lcd.cursor(); // 顯示游標
lcd.blink(); // 讓游標閃爍
}


void loop() {

   // 讀取 Keypad 的輸入
char key = keypad.getKey();

// NO_KEY 代表沒有按鍵被按下
if (key != NO_KEY){
   Serial.println(key);
            lcd.print(key);
}
   if(key == '*'){
      lcd.clear();
          lcd.print("Password:");
            lcd.setCursor(0, 1);
         
}
}
頁: [1]
查看完整版本: 關於-Arduino LCD i2c + 3*4鍵盤 結合