Overview
This Tutorial provides a walk-through of the steps to perform User Profile Configuration using RFID3 API
Create The Project
- Start by creating a new project in Android Studio. For help, see the Android Studio tutorial.
- Refer Hello RFID to prepare basic setup to work with RFID Reader and then follow this guide
Details
Configuring Profiles for Smart Periodic Inventory. Below is the table for user profile and its description.
Profile Configurations
Below is the table for user profile and its configuration for transmit power, duty cycle, session, tag population, link profile and inventory state.
Performing Operation
Get User Duty Cycle
ENUM_DUTY_CYCLE dutyCycle = reader.Config.getUserDutyCycle();
Set User Duty Cycle
RFIDResults res = reader.Config.setUserDutyCycle("MAX");
Perform smart periodic inventory with changed profile.
reader.Actions.Inventory.perform();
Closer look
- API call
Inventory.perform()
starts inventory operation on reader - API call
Inventory.stop()
stops inventory operation on reader