NFC Tag Read - LC 9
Posted: Tue May 08, 2018 8:30 pm
I have the following code, but receive nothing in the pTag variable. Any ideas as to why?
Many Thanks,
Googie.
Code: Select all
on openStack
if mobileIsNFCEnabled() is "true" then
answer "Device NFC has been turned on"
mobileEnableNFCDispatch
else
answer "NFC not available. Please switch it on."
break
end if
if mobileIsNFCAvailable() is "true" then
answer "NFC tags can be read"
end if
end openStack
on nfcTagReceived pTag
answer pTag
end nfcTagReceived
Many Thanks,
Googie.