Robofun 機器人論壇

 找回密碼
 申請會員
搜索
熱搜: 活動 交友 discuz
查看: 6360|回復: 3
打印 上一主題 下一主題

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

[複製鏈接]
跳轉到指定樓層
1#
發表於 2014-6-19 11:16:11 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
如題Arduino LCD i2c 1602 + 3*4鍵盤 結合
當我用3*4鍵盤輸入 數字,要顯示於LCD裡,
有範例教學嗎??
2#
發表於 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[ROWS][COLS] = {
  {'1','2','3'},
  {'4','5','6'},
  {'7','8','9'},
  {'*','0','#'}
};

// 定義 Keypad 連到 Arduino 的接腳
byte rowPins[ROWS] = {32, 22, 24, 28}; // 連到 Keypad 的 4 個 Rows: Row0, Row1, Row2, Row3
byte colPins[COLS] = {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);
  }
}
3#
發表於 2015-12-15 16:03:33 | 只看該作者
請教樓上大大
我想要做一個門禁系統,我分別寫了兩個程式
第一個:RFID配合繼電器啟動電子門鎖
第二個:利用4*4鍵盤輸入密碼,密碼正確後啟動電子門鎖
目前第一個已經成功寫出來了
第二個部分還差在 寫入密碼的程式還沒想出來..
想請教大大,如何利用4*4鍵盤寫出密碼程式、以及讓兩種程式結合再一起?
4#
發表於 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_PIN  7
#define En_pin  4
#define Rw_pin  5
#define Rs_pin  6
#define D4_pin  0
#define D5_pin  1
#define D6_pin  2
#define D7_pin  3
#define BACKLIGHT_FLAG  NEGATIVE
#elif defined(LCMIIC2)
#define I2C_ADDR    0x27  // Define I2C Address
#define BACKLIGHT_PIN  3
#define En_pin  2
#define Rw_pin  1
#define Rs_pin  0
#define D4_pin  4
#define D5_pin  5
#define D6_pin  6
#define D7_pin  7
#define BACKLIGHT_FLAG  POSITIVE
#elif defined(LCMIIC3)
#define I2C_ADDR    0x20  // Define I2C Address
#define BACKLIGHT_PIN  3
#define En_pin  2
#define Rw_pin  1
#define Rs_pin  0
#define D4_pin  4
#define D5_pin  5
#define D6_pin  6
#define D7_pin  7
#define BACKLIGHT_FLAG  POSITIVE
#else // error
#error LCM not defined
#endif

#define  LED_OFF  0
#define  LED_ON  1

// initialize the library with the numbers of the interface pins
LiquidCrystal_I2C  lcd(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[ROWS][COLS] = {
  {'1','2','3','A'},
  {'4','5','6','B'},
  {'7','8','9','C'},
  {'*','0','#','D'}
};

// 定義 Keypad 連到 Arduino 的接腳
byte rowPins[ROWS] = {2, 3,4, 5}; // 連到 Keypad 的 4 個 Rows: Row0, Row1, Row2, Row3
byte colPins[COLS] = {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);
         
}
  }
您需要登錄後才可以回帖 登錄 | 申請會員

本版積分規則

小黑屋|手機版|Archiver|機器人論壇 from 2005.07

GMT+8, 2024-4-25 12:51 , Processed in 0.200036 second(s), 7 queries , Apc On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回復 返回頂部 返回列表