This constraint allows or prevents a macro/feature from running based on whether NFC is enabled.

Options

  • Enabled: Constraint passes only when NFC is on
  • Disabled: Constraint passes only when NFC is off

Example

Example 1: Open your wallet app only when NFC is enabled. Warn the user if it's not enabled

Triggers

Widget Button
Actions

IF (NFC State - Enabled)
  Launch Application: Wallet
ELSE
  Popup Message "NFC is disabled"
ENDIF

See Also