// SPDX-License-Identifier: Apache-2.0 // Copyright Pionix GmbH and Contributors to EVerest #pragma once #include #include #include #include #include class NfcHandler { public: enum class Protocol { UNKNOWN, MIFARE, ISO_IEC_15693, }; using Callback = std::function; NfcHandler(const std::filesystem::path& config_path); ~NfcHandler(); bool start(Callback); private: void on_tag_arrival(void* pTagInfo); void on_tag_departure(); Callback callback{nullptr}; };