mirror of
https://github.com/esphome/esphome.git
synced 2025-02-22 12:58:15 +00:00
13 lines
275 B
Python
13 lines
275 B
Python
from esphome import automation
|
|
import esphome.codegen as cg
|
|
|
|
CODEOWNERS = ["@jesserockz"]
|
|
|
|
nfc_ns = cg.esphome_ns.namespace("nfc")
|
|
|
|
NfcTag = nfc_ns.class_("NfcTag")
|
|
|
|
NfcOnTagTrigger = nfc_ns.class_(
|
|
"NfcOnTagTrigger", automation.Trigger.template(cg.std_string, NfcTag)
|
|
)
|