질문게시판 > 서브모터,I2C LCD, RFID, 버튼을 이용한 아두이노

TODAY10,131 TOTAL4,868,304
사이트 이용안내
Login▼/회원가입
최신글보기 질문게시판 기술자료 동영상강좌

아두이노 센서 ATMEGA128 PWM LED 초음파 AVR 블루투스 LCD UART 모터 적외선


BASIC4MCU | 질문게시판 | 서브모터,I2C LCD, RFID, 버튼을 이용한 아두이노

페이지 정보

작성자 돕고살려주세요 작성일2023-11-30 21:54 조회1,364회 댓글1건

본문

	
#include<Servo.h>
#include<SPI.h>
#include<MFRC522.h>
#include<Wire.h>
#include<LiquidCrystal_I2C.h>

#define SS_PIN 10
#define RST_PIN 9
MFRC522 mfrc522(SS_PIN, RST_PIN);
LiquidCrystal_I2C lcd(0x27, 16, 2);
Servo servo;

int a,b,c,d;
   
void setup() {
 Serial.begin(9600);
  SPI.begin();
  lcd.begin(2,16);
  pinMode(OUTPUT, 5);
  pinMode(OUTPUT, 6);
  pinMode(OUTPUT, 7);
  pinMode(OUTPUT, 8);
  mfrc522.PCD_Init();
  lcd.print("   Press Button");    

}

void loop() {
  lcd.clear();
  lcd.print("  Press the button  ");
  a = digitalRead(5);
  b = digitalRead(6);
  c = digitalRead(7);
  d = digitalRead(8);

  Serial.print(a);
  Serial.print(b);
  Serial.print(c);
  Serial.print(d);  
  /////////////////////////////////////////
  if(a==0)
  {
    lcd.clear();
    lcd.print("     Press the button    ");
    lcd.print("    give me your card");
    delay(9000);
    if( ! mfrc522.PICC_IsNewCardPresent())
    {
      return;
    }
    if(! mfrc522. PICC_ReadCardSerial())
    {
      return;
    }
    Serial.print("UID tag : ");
    String content = "";
    byte letter;
    for(byte i =0; i<mfrc522. uid.size; ++i)
    {
      Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? "0" : " ");
      Serial.print(mfrc522.uid.uidByte[i], HEX);
      content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? "0" : " "));
      content.concat(String(mfrc522.uid.uidByte[i], HEX));
     
    }
    Serial.println();
    Serial.print("Message : ");
    content.toUpperCase();
    if(content.substring(1) =="2B 3C C9 23")
    {
      servo.attach(A0);
      servo.write(80);
      delay(2000);
      servo.detach();
      delay(2000);
      lcd.clear();
      lcd.print("  Take the cookies");
      delay(5000);
    }
  }
  if(b==0)
  {
    lcd.clear();
    lcd.print("    Press the button  ");
    lcd.print("    give me your card");
    delay(9000);
    if( ! mfrc522.PICC_IsNewCardPresent())
    {
      return;
    }
    if(! mfrc522. PICC_ReadCardSerial())
    {
      return;
    }
    Serial.print("UID tag : ");
    String content = "";
    byte letter;
    for(byte i =0; i<mfrc522. uid.size; ++i)
    {
      Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? "0" : " ");
      Serial.print(mfrc522.uid.uidByte[i], HEX);
      content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? "0" : " "));
      content.concat(String(mfrc522.uid.uidByte[i], HEX));
     
    }
    Serial.println();
    Serial.print("Message : ");
    content.toUpperCase();
    if(content.substring(1) =="2B 3C C9 23")
    {
      servo.attach(2);
      servo.write(80);
      delay(2000);
      servo.detach();
      delay(2000);
      lcd.clear();
      lcd.print("  Take the cookies");
      delay(5000);
    }
  }
  if(c==0)
    {
    lcd.clear();
    lcd.print("     Press the button    ");
    lcd.print("    give me your card");
    delay(9000);
    if( ! mfrc522.PICC_IsNewCardPresent())
    {
      return;
    }
    if(! mfrc522. PICC_ReadCardSerial())
    {
      return;
    }
    Serial.print("UID tag : ");
    String content = "";
    byte letter;
    for(byte i =0; i<mfrc522. uid.size; ++i)
    {
      Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? "0" : " ");
      Serial.print(mfrc522.uid.uidByte[i], HEX);
      content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? "0" : " "));
      content.concat(String(mfrc522.uid.uidByte[i], HEX));
     
    }
    Serial.println();
    Serial.print("Message : ");
    content.toUpperCase();
    if(content.substring(1) =="2B 3C C9 23")
    {
      servo.attach(3);
      servo.write(80);
      delay(2000);
      servo.detach();
      delay(2000);
      lcd.clear();
      lcd.print("  Take the cookies");
      delay(5000);
    }
  }
  if(d==0)
      {
    lcd.clear();
    lcd.print("    Press the button  ");
    lcd.print("    give me your card");
    delay(9000);
    if( ! mfrc522.PICC_IsNewCardPresent())
    {
      return;
    }
    if(! mfrc522. PICC_ReadCardSerial())
    {
      return;
    }
    Serial.print("UID tag : ");
    String content = "";
    byte letter;
    for(byte i =0; i<mfrc522. uid.size; ++i)
    {
      Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? "0" : " ");
      Serial.print(mfrc522.uid.uidByte[i], HEX);
      content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? "0" : " "));
      content.concat(String(mfrc522.uid.uidByte[i], HEX));
     
    }
    Serial.println();
    Serial.print("Message : ");
    content.toUpperCase();
    if(content.substring(1) =="2B 3C C9 23")
    {
      servo.attach(4);
      servo.write(80);
      delay(2000);
      servo.detach();
      delay(2000);
      lcd.clear();
      lcd.print("  Take the cookies");
      delay(5000);
    }
  }
  delay(100);
}
}
제가 유튜브를 보고 RFID를 이용한 자판기를 만들어 볼려고 하는데, 유튜브에 있는대로 따라해봤지만 LCD에는 검은색 블록이 나열되어 출력이 되고, 버튼을 누른 뒤 RFID에 카드(RFID)를 접촉시키면, 360도 서브모터가 돌아가 과자가 떨어지게 행동이 됐어야 하는데, 어떠한 문제가 있는건지 RFID도 인식을 못하고, button을 눌러도 아무런 반응을 하지 않습니다. 핀도 모두 lcd는 아날로그 쪽에, RFID는 디지털 쪽에 점프선을 연결 했는데도 안됩니다. 혹시 어떠한 문제가 있는지, 해결방안도 설명해주시면 감사하겠습니다.

라이브러리도 다 깔았고 lcd의 주소도 확인하여 맞췄습니다. 제가 아두이노를 접한지 얼마 되지 않아서 도와주시면 감사하겠습니다.
혹시 제가 틀렸을수도 있으니, 제가 본 유튜브 링크 남겨보겠습니다.


작동방식
1. LCD에 "Press the button" 이라는 문구가 뜬다.
2. Give me your card라는 문구가 뜨면 RFID에 카드를 접촉시킨다.
3.그 버튼에 해당하는 서브모터가 돌아가면서 과자를 떨어뜨린다.
4.lcd에 Take the cookies라는 문구가 뜬다
5.lcd가 다시 초기화 한다.
  • BASIC4MCU 작성글 SNS에 공유하기
  • 페이스북으로 보내기
  • 트위터로 보내기
  • 구글플러스로 보내기

댓글 1

조회수 1,364

master님의 댓글

master 작성일

LCD 예제/ RFID예제/ 서보모터 예제/ 스위치예제/로 충분히 학습한 후에 다시 시도 해보세요

질문게시판HOME > 질문게시판 목록

MCU, AVR, 아두이노 등 전자공학에 관련된 질문을 무료회원가입 후 작성해주시면 전문가가 답변해드립니다.
ATMEGA128PWMLED초음파
아두이노AVR블루투스LCD
UART모터적외선ATMEGA
전체 스위치 센서
질문게시판 목록
제목 작성자 작성일 조회
질문 스텝모터 제어 및 온도센서 값 동시 추출 질문드립니다.댓글[1] metanoia 23-12-06 1087
질문 ATmega128에서 LCD와 블루투스 fanfan 23-12-05 1211
답변 답변글 답변 : ATmega128에서 LCD와 블루투스댓글[1] master 23-12-05 1931
질문 atmega128 압력센서 관해댓글[2] 메시기모찌 23-12-04 3399
질문 안녕하세요 심장박동센서를 이용해 일정 심박수 이상이되면 부저 작동에 대해서 질문드립니다.댓글[8] 충전공 23-12-04 32906
질문 atmega128 CLCD댓글[2] 릴를 23-12-03 3836
질문 atmega128 블루투스 CLCD댓글[3] 릴를 23-12-03 5835
질문 pwm을 이용한 led댓글[1] 이미지첨부파일 아자자자자자 23-12-02 1307
질문 스텝모터, 컬러센서를 이용한 아두이노댓글[3] 초식동물 23-12-02 3926
질문 조도 센서를 이용하여 pwm모드로 led밝기 조절 아자자자자자 23-12-02 1001
답변 답변글 답변 : 조도 센서를 이용하여 pwm모드로 led밝기 조절댓글[2] master 23-12-02 2070
질문 RFID를 이용한 자판기 질문입니다.댓글[1] 왕초보두이노 23-12-02 786
질문 ATMEGA 128 초음파 센서 거리에 따른 부저 작동 질문드립니다.댓글[7] 충전공 23-12-02 17845
질문 atmega128a 외부인터럽트 두개와 7segment의 연결 우엉 23-12-02 904
답변 답변글 답변 : atmega128a 외부인터럽트 두개와 7segment의 연결 master 23-12-02 840
질문 atmega128 스위치 서보모터댓글[1] 메시기모찌 23-12-02 1717
질문 atmega128 모터 질문입니다댓글[4] 이미지 릴를 23-12-01 5543
질문 ATMEGA128 초음파센서 인터럽트 관련 메시기모찌 23-12-01 1059
답변 답변글 답변 : ATMEGA128 초음파센서 인터럽트 관련 master 23-12-01 1173
질문 Atmega128과 도트 매트릭스질문댓글[1] 탈모공학자 23-12-01 1159
현재글 서브모터,I2C LCD, RFID, 버튼을 이용한 아두이노댓글[1] 돕고살려주세요 23-11-30 1365
질문 atmega128 초음파센서 인터럽트댓글[8] 메시기모찌 23-11-30 17074
질문 아트메가 128 초음파센서 코드 질문입니다. gongrin 23-11-29 1037
답변 답변글 답변 : 아트메가 128 초음파센서 코드 질문입니다. master 23-11-30 966
질문 24V 기어모터를 아두이노로 작동시키려 합니다댓글[1] 이미지첨부파일 siwon 23-11-28 1364
질문 적외선 센서는 감지가 되는데 적외선 센서가 감지 될때 서보모터가 동시에 동작하게 하려고 하는데 도와주시면 감… 조현호 23-11-28 1105
답변 답변글 답변 : 적외선 센서는 감지가 되는데 적외선 센서가 감지 될때 서보모터가 동시에 동작하게 하려고 하는데 도와… master 23-11-29 888
질문 7447과 7세그먼트를 이용한 시계 만들기 코딩 도와주세요.댓글[1] 이미지첨부파일 nimyo0 23-11-24 985
답변 답변글 답변 : 7447과 7세그먼트를 이용한 시계 만들기 코딩 도와주세요. 이미지 master 23-11-25 962
질문 모터 동작 영향으로인한 온도 측정값 변화 해결댓글[1] milka 23-11-24 922
게시물 검색

2022년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
2021년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
2020년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
2019년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
2018년 1월 2월 3월 4월 5월 6월 7월 8월 9월 10월 11월 12월
Privacy Policy
MCU BASIC ⓒ 2020
모바일버전으로보기