mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
9 lines
226 B
C++
9 lines
226 B
C++
#include "automation.h"
|
|
|
|
namespace esphome {
|
|
namespace nfc {
|
|
|
|
void NfcOnTagTrigger::process(const std::unique_ptr<NfcTag> &tag) { this->trigger(format_uid(tag->get_uid()), *tag); }
|
|
|
|
} // namespace nfc
|
|
} // namespace esphome
|