bledome.ino 297 B

1234567891011121314151617181920212223242526
  1. #include "blemanager.h"
  2. // #include "rfid.h"
  3. #include "ndef.h"
  4. #include "qr.h"
  5. void setup() {
  6. Serial.begin(19200);
  7. bleSetup();
  8. // rfidSetup();
  9. ndefSetup();
  10. qrSetup();
  11. Serial.println("lllalalal");
  12. }
  13. void loop(){
  14. bleLoop();
  15. // rfidSetup();
  16. ndefLoop();
  17. qrLoop();
  18. }