Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

If you need to read RFID cards in your FileMaker solution, you can use the Phidgets functions in MBS FileMaker Plugin and a PhidgetRFID device.

You may start with one of our examples, like the one for temperature sensors. There you load the phidget library for the platform you are on.

The call for Phidget.Create is modified to pass "RFID" as device type. Then you may connect script triggers for attachment of the device and call Phidget.Open function to open a connection.

Set Variable [ $$phidget ; Value: MBS( "Phidget.Create"; "RFID" ) ]
Set Variable [ $r ; Value: MBS( "Phidget.SetScriptTrigger"; $$phidget; "Attach"; Get(FileName); "Attached" ) ]
Set Variable [ $r ; Value: MBS( "Phidget.SetScriptTrigger"; $$phidget; "Detach"; Get(FileName); "Detached" ) ]
# 
# open asynchronously
Set Variable [ $r ; Value: MBS( "Phidget.Open"; $$phidget ) ]


Once connected, the attached script trigger runs. There you may install the script trigger for a tag being found or lost:

Set Variable [ $r ; Value: MBS( "Phidget.SetScriptTrigger"; $phidget; "Tag"; Get(FileName); "TagFound" ) ]
Set Variable [ $r ; Value: MBS( "Phidget.SetScriptTrigger"; $phidget; "TagLost"; Get(FileName); "TagLost" ) ]


The TagFound script runs when a card comes close to the reader. The parameter to the script is a JSON and the "tag" key contains the text read from the card. 

To actually receive something, you need to turn on the antenna for the RFID reader, so please set the AntennaEnabled property to true:

Set Variable [ $r ; Value: MBS( "Phidget.SetProperty"; $phidget; "AntennaEnabled"; 1 ) ]

We implemented this with a client last week and it works just fine.

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.