아두이노 RFID 센서 활용하기 (간단)
포트폴리오
2019. 8. 14.
rfid -rc522 센서. RFID 카드를 읽을 수 있는 모듈이며 아두이노만 있으면 RFID를 이용해 볼 수 있다. 카드는 위에서 볼 수 있듯 2개이다. 라이브러리는 MFRC522를 다운 받으면 된다. #include #include #define RST_PIN 9 // Configurable, see typical pin layout above #define SS_PIN 10 // Configurable, see typical pin layout above MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance void setup() { Serial.begin(9600);// Initialize serial communications with th..