mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 04:33:27 +02: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)
|
|
)
|