Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
00001 // Hello World for printing RFID tag numbers 00002 00003 #include "mbed.h" 00004 #include "ID12RFID.h" 00005 00006 ID12RFID rfid(PA_10); 00007 00008 int main() 00009 { 00010 while(1) 00011 { 00012 if(rfid.readable()) 00013 { 00014 printf("RFID Tag number : %d\n\r", rfid.read()); 00015 } 00016 00017 } 00018 }
Generated on Thu Aug 25 2022 15:07:54 by
1.7.2