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

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

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


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

페이지 정보

작성자 돕고살려주세요 작성일2023-11-30 21:54 조회1,242회 댓글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,242

master님의 댓글

master 작성일

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

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

MCU, AVR, 아두이노 등 전자공학에 관련된 질문을 무료회원가입 후 작성해주시면 전문가가 답변해드립니다.
ATMEGA128PWMLED초음파
아두이노AVR블루투스LCD
UART모터적외선ATMEGA
전체 스위치 센서
질문게시판 목록
제목 작성자 작성일 조회
공지 MCU, AVR, 아두이노 등 전자공학에 관련된 질문은 질문게시판에서만 작성 가능합니다. 스태프 19-01-15 23948
공지 사이트 이용 안내댓글[31] master 17-10-29 38036
질문 esp32 배터리 잔량 공부중입니다..댓글[6] 펌린이 24-09-06 135
답변 답변글 답변 : esp32 배터리 잔량 공부중입니다.. 이미지새글 master 24-09-07 22
질문 ads로 adc값을 읽는데댓글[1] 라칸 24-09-05 43
질문 stm32 절전모드에 대해서댓글[2] 라칸 24-08-29 78
질문 아두이노 우노보드로 스마트팜 만들려고 하는데 문제가 있어요댓글[4] 부러진명검 24-08-28 184
질문 아두이노 블루투스 통신댓글[3] 이미지첨부파일 찌릿공돌이 24-08-27 138
질문 stm32에서 USB에 파일 생성 및 저장을 하려는데댓글[1] 이미지 라칸 24-08-23 213
질문 STM32 1개의 핀으로 ADC, DAC 사용 가능 여부댓글[4] aaahhhj 24-08-21 253
질문 회로 수정 질문..댓글[3] 이미지 소정이 24-08-21 162
질문 아두이노에서 stm32 그래프 파형 보려고 하는데 발생하는 오류댓글[1] aaahhhj 24-08-19 162
질문 님들 센서를 사용해서 adc값을 읽으려는데댓글[1] 라칸 24-08-13 170
질문 ATmega128 servo motor 동콩이 24-08-07 132
답변 답변글 답변 : ATmega128 servo motor댓글[2] master 24-08-07 343
질문 체성분 분석하는 센서를 어떻게 구해야할까요?댓글[2] 제작왕초보 24-08-02 293
질문 LED와 FND의 출력이 제가 생각한대로 나오지 않아요.댓글[4] 킹왕짱 24-07-24 666
질문 STM32F429ZIT6보드와 lcm1602 이용한 알람시계 질문 (사용자 지정 알람 값에 알람 인터럽트 반… aaahhhj 24-07-24 112
답변 답변글 답변 : STM32F429ZIT6보드와 lcm1602 이용한 알람시계 질문 (사용자 지정 알람 값에 알람 인…댓글[1] master 24-07-24 166
질문 16bit DAC와 ADC 연결댓글[1] JMLew 24-07-19 185
질문 아두이노 초음파센서 연결 + 컴퓨터 연결 제발 도와주세요댓글[1] 이미지첨부파일 pinkpong 24-07-14 272
질문 아두이노 여러 센서 연결댓글[4] 이미지첨부파일 공수백자 24-07-09 882
질문 기어드 모터 외부인터럽트 사용하여 1초 동안 펄스 세는 법댓글[3] 바밤 24-07-04 485
질문 STM32F429ZIT6 rtc alarm 인터럽트 i2c lcd에 구현하는 방법댓글[5] aaahhhj 24-06-29 760
질문 Atmega128 LCD 출력이 나오지 않습니다, 코드 확인 부탁드립니다. 이미지첨부파일 코드에막혀 24-06-25 194
답변 답변글 답변 : Atmega128 LCD 출력이 나오지 않습니다, 코드 확인 부탁드립니다.댓글[1] master 24-06-25 238
질문 atmega128 recipe for target 'main.o ' failed 오류댓글[3] hhhyyyeee 24-06-19 639
질문 atmega128 코드 합치기 앗메 24-06-18 208
답변 답변글 답변 : atmega128 코드 합치기 master 24-06-19 158
질문 아두이노 파력발전댓글[1] sighn 24-06-16 243
게시물 검색

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
모바일버전으로보기