You've already forked M5Unit-NFC
mirror of
https://github.com/m5stack/M5Unit-NFC.git
synced 2026-05-20 11:48:34 -07:00
20 lines
536 B
Arduino
20 lines
536 B
Arduino
/*
|
|
* SPDX-FileCopyrightText: 2025 M5Stack Technology CO LTD
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
/*
|
|
Example using M5UnitUnified for ST25R3916
|
|
Detect NFC-F PICC
|
|
*/
|
|
// *************************************************************
|
|
// Choose one define symbol to match the unit you are using
|
|
// *************************************************************
|
|
#if !defined(USING_UNIT_NFC) && !defined(USING_CAP_CC1101)
|
|
// For UnitNFC
|
|
// #define USING_UNIT_NFC
|
|
// For CapNFC
|
|
// #define USING_CAP_CC1101
|
|
#endif
|
|
#include "main/Detect.cpp"
|