NFC tag scan issue #307
-
I am trying to read my tag, however I get an exception. I pasted the UUID on location
What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
The event trigger is trying to call the function with the parameters from the event, but your function doesn't declare those parameters. It appears they are
See the docs. |
Beta Was this translation helpful? Give feedback.
-
I updated my original answer here too: #305 |
Beta Was this translation helpful? Give feedback.
-
@JayNewstrom - great, thanks! |
Beta Was this translation helpful? Give feedback.
The event trigger is trying to call the function with the parameters from the event, but your function doesn't declare those parameters. It appears they are
device_id
andtag_id
. So you should declare the function like this:See the docs.