1234567891011121314151617181920212223242526 |
- #include "blemanager.h"
- // #include "rfid.h"
- #include "ndef.h"
- #include "qr.h"
- void setup() {
-
- Serial.begin(19200);
-
- bleSetup();
- // rfidSetup();
- ndefSetup();
- qrSetup();
- Serial.println("lllalalal");
- }
- void loop(){
- bleLoop();
- // rfidSetup();
- ndefLoop();
- qrLoop();
- }
|