You just unboxed a shiny USB RFID reader. Looks simple enough—plug it in, wave a card, data appears. Then you plug it in and… nothing. No pop-ups. No beeps. Just a confused Windows notification that doesn’t help.
Here is the thing. When people search how to use USB RFID reader, they usually discover that some readers work like keyboards—plug and play—while others need drivers and software. And if you get the wrong one for your setup, you will spend hours fighting COM ports instead of scanning tags.
Let me walk through the real steps for using USB RFID readers, from the simplest to the more advanced setups.
First: Know What Kind of USB Reader You Have
USB RFID readers come in two main flavors. Which one you have determines everything.
Keyboard wedge readers act like a USB keyboard . When you scan a card, the reader types the number into whatever field your cursor is in. Open Notepad, scan a card, and the UID appears like you typed it. No drivers, no software—just works .
Serial communication readers create a virtual COM port on your computer . They need drivers and terminal software to capture data. These give you more control—you can read different memory banks, adjust settings, and integrate with custom applications.
CYKEO USB readers like the CK-D1L desktop encoder support both modes. You can switch between keyboard wedge for simple data entry and serial mode for programming tags .
Method 1: Using a Keyboard Wedge Reader (Simplest)
If you just need to capture card numbers into a database, spreadsheet, or access control system, this is the way.
Step 1: Plug it in
Connect the reader to any USB port. Avoid USB hubs—plug directly into the computer . On Windows, you might hear a device connection sound. That is it.
Step 2: Test in Notepad
Open Notepad. Click in the blank area so the cursor is blinking. Hold an RFID card near the reader—within 2-4 inches typically . The card number appears instantly, just like you typed it.
If you see gibberish like ▒▒▒▒▒▒▒▒▒▒, that is actually the card data—it is just hex code being interpreted as text. In Notepad, that is normal. In your actual application, it will format correctly.
Step 3: Use in your application
Open your access control software, inventory system, or spreadsheet. Click in the field where the card number should go. Scan the card. The number appears. Save.
That is it. No configuration. No driver hunting.
For 125 kHz readers: These almost always work as keyboard wedge with no drivers . Great for access control and simple ID capture.
For 13.56 MHz readers: Some need drivers, especially if they read secure cards or user memory . Check your model.
Method 2: Using a Serial USB Reader (For Advanced Users)
When you need to read user memory, program tags, or integrate with custom software, you need serial mode.
Step 1: Install drivers
Most serial USB readers use a USB-to-serial chip. Common ones are CH340, CP2102, or FTDI .
- Windows often auto-installs generic drivers. Check Device Manager under “Ports (COM & LPT)”. If you see “USB Serial Port (COM3)” or similar, drivers are working .
- If you see a yellow warning icon, download the driver from the manufacturer’s website . For CYKEO readers, drivers are on our support page.
- Install as administrator if prompted .
Step 2: Find the COM port
In Device Manager, expand “Ports (COM & LPT)”. Note the COM port number—COM3, COM4, etc. . You will need this for your software.
Step 3: Install terminal software (for testing)
Download a serial terminal like Tera Term (Windows) or CoolTerm . Configure:
- Port: Your COM port number
- Baud rate: Usually 9600 or 115200 (check reader manual)
- Data bits: 8
- Parity: None
- Stop bits: 1
- Flow control: None
Open the connection. Scan a tag. You should see hex data appear—likely the tag UID.
Step 4: Use with RFID software
CYKEO ScanLite software auto-detects most USB readers . Open it, select your reader from the list, and start scanning. The software shows tag data in readable format and can export to CSV.
For programming tags, use CYKEO Tag Manager. It handles:
- Reading EPC and TID
- Reading/writing user memory
- Setting access passwords
- Locking tags
Step 5: Integrate with your own code
For developers, the CYKEO SDK provides Python, Java, and C# libraries. Simple example:
python
from cykeo_sdk import USBReader
reader = USBReader(port="COM3")
reader.connect()
def on_tag(tag):
print(f"EPC: {tag.epc}")
print(f"RSSI: {tag.rssi}")
if tag.user_memory:
print(f"User data: {tag.user_memory.hex()}")
reader.on_tag_read = on_tag
reader.start_reading()
Method 3: Using USB Reader with Android
CYKEO CK-D1L and CK-B4L USB readers work with Android devices that support USB host mode .
Step 1: Connect via OTG
Use a USB-C to USB-C cable or USB-C to USB-A adapter (OTG cable). Plug the reader into your Android phone or tablet.
Step 2: Check connection
Android should recognize the reader. You might see a notification. If not, download “USB OTG Checker” from Play Store to verify host mode support.
Step 3: Open CYKEO Scan app
The app auto-detects USB readers. Tap “Connect” and start scanning. Tags appear with EPC and RSSI.
Step 4: Write data
Select a tag, choose memory bank (EPC or USER), enter data in hex or ASCII, and write. Verify by reading back.
Common Applications for USB Readers
Access control enrollment: Add cards to door systems by scanning directly into user records . Click the card field, scan, save.
Point of sale: Quick customer lookup by scanning loyalty cards .
Inventory receiving: Scan incoming items to verify against purchase orders.
Tool checkout: Scan tools as they go to workers, write who took them to tag memory.
Attendance tracking: Employees scan badges on arrival, data logs to database.
Troubleshooting Common Issues
Reader not detected at all
- Try different USB port—avoid hubs and front-panel ports
- Check cable—some USB cables are charge-only, not data
- In Device Manager, look under “Other devices” for unknown devices
- Restart computer with reader plugged in
Driver install fails
- Download driver directly from manufacturer, not Windows Update
- Run installer as administrator
- Temporarily disable driver signature enforcement (Windows 11)
Reader detected but no data in software
- Check COM port settings match (baud rate, parity)
- Close other software that might be using the COM port
- In keyboard wedge mode, ensure cursor is in the correct field
- Try different software—CYKEO ScanLite first, then terminal
Tag scans but data is wrong format
- Reader may be outputting in different format (hex vs decimal)
- Some readers can be configured in software to change output
- For 2N systems, DEC to HEX conversion happens automatically
Inconsistent reads
- Keep tags within specified range—usually 2-6 inches
- Move away from interference sources: WiFi routers, microwaves, fluorescent lights
- Clean tag surface—dirt or scratches affect performance
- Try different tag orientation—rotate 90 degrees
Software shows duplicate reads
Normal—readers report tags multiple times while in field. Software should filter duplicates . Check settings for “duplicate elimination” or “unique tags only.”
Which USB Reader Should You Use?
For simple card number capture: Keyboard wedge reader. Plug in, open Notepad to test, use in any application .
For programming tags: Serial reader with software like CYKEO Tag Manager. Need access to user memory and advanced features.
For access control enrollment: Either works. Keyboard wedge is simpler for 2N systems—click field, scan, done .
For custom software development: Serial reader with SDK. Need COM port access and full control.
For Android mobile use: CYKEO CK-D1L or CK-B4L with OTG support.
The Bottom Line
How to use USB RFID reader breaks down to three scenarios:
- Keyboard wedge: Plug in, open Notepad to test, use in any application that accepts typed input. No drivers needed for most 125kHz readers .
- Serial with software: Install drivers, find COM port, use CYKEO ScanLite or Tag Manager. Required for programming and user memory access .
- Android: Connect via OTG, open CYKEO Scan app, start scanning.
Most beginners overcomplicate it. Start with Notepad. If the card number appears, you are 90% there. The rest is just pointing that data to the right place.
CYKEO USB rfid readers like the CK-D1L are designed for both worlds—keyboard wedge mode for simplicity, serial mode for power. Our free software handles the complexity so you focus on the work.
And when you get stuck—because USB gremlins exist—CYKEO support has helped thousands of users. Call us with your reader model and what you are trying to do.
Need a USB reader for your setup?
CYKEO offers desktop USB readers for HF and UHF tags, all with keyboard wedge and serial modes. Contact our team for recommendations based on your application.

2025-12-17
CYKEO Passive RFID Tags are made for wet and high-humidity environments where standard labels do not last. This rfid passive tag is often used around liquids, chemicals and temperature changes, providing stable reading distance and long data life for industrial tracking.

2025-12-17
CYKEO CYKEO-PCB1504 Metal RFID Tags is a compact anti-metal UHF RFID solution built for direct mounting on metal surfaces. With stable 8-meter read range, Ucode-8 chip, and long data retention, this rfid metal tag fits tools, containers, automotive parts, and industrial asset tracking.

2025-12-17
CYKEO CYKEO-PCB7020 On-Metal RFID Tags are designed for reliable tracking on steel and metal surfaces. Built with an FR4 epoxy body and industrial-grade chips, these On-Metal RFID Tags deliver stable performance, long data life, and chemical resistance, making them a dependable RFID anti-metal tag for harsh environments.

2025-12-17
The CYKEO CYKEO-60-25 Anti-Metal RFID Tag is built for metal surfaces where standard tags fail. Designed for long-range performance, harsh environments, and stable data retention, this Anti-Metal RFID Tag is ideal for industrial assets, containers, and equipment tracking using on metal RFID tags.

2025-12-17
The CYKEO RFID Laundry Tag is designed for long-term textile identification in harsh laundry environments. Built to withstand high heat, chemicals, and repeated washing, this RFID Laundry Tag delivers stable performance for hotels, hospitals, and industrial laundry operations using laundry rfid tags at scale.

2025-12-17
The CYKEO CYKEO-125-7 RFID Book Tag is designed for reliable book and document tracking in libraries and archives. This RFID Book Tag delivers long read range, dense placement support, and stable performance on shelves, making it a practical rfid tag on books for library automation, file management, and archival systems.

2025-12-16
CYKEO RFID tags in hospitals are designed for sterile environments where accuracy matters. These autoclavable RFID tags support long-term tracking of surgical tools, implants, and medications, helping hospitals improve visibility, compliance, and patient safety.

2025-12-16
CYKEO RFID Cable Tie Tag is built for reliable identification on metal surfaces. This UHF RFID Cable Tie Tag is widely used in rfid tags for inventory systems, industrial asset management and Hospital RFID Tags, offering stable read performance, long service life and global EPC Gen2 compatibility.

2025-12-16
CYKEO RFID Asset Tag is designed for stable identification of metal assets in industrial environments. This UHF RFID Asset Tag is commonly used for rfid tag asset tracking on equipment, tools and containers, providing reliable reads, long service life and ISO/IEC 18000-6C support.

2025-12-16
CYKEO UHF RFID Card is designed for fast identification and long-term use in industrial and commercial systems. Supporting ISO 18000-6C, this UHF RFID Card works at 860–960 MHz and is suitable for custom RFID cards used in asset tracking, access control and inventory management.

2025-12-16
CYKEO HF RFID Cards are designed for secure and stable access control systems. These 13.56 MHz RFID key cards support ISO 14443-A, reliable rewriting and long service life, making HF RFID Cards suitable for offices, campuses, events and membership management.

2025-12-16
CYKEO UHF RFID Tag is designed for reliable tracking of metal jewelry and high-value items. This Jewelry RFID Tag supports long-range reading up to 8 meters, anti-counterfeit protection and stable performance on metal, making it suitable for retail, inventory control and asset management.

2025-12-15
CYKEO Embedded RFID Modules are designed for compact industrial and IoT devices that require stable UHF performance. These UHF RFID Modules support global protocols, flexible power control, and reliable multi-tag reading for smart cabinets, production lines, and asset tracking systems.

2025-12-15
CYKEO Embedded RFID Module is built for compact IoT and industrial devices that need stable UHF performance. This UHF module supports global protocols, low power operation, and reliable multi-tag reading for smart lockers, production lines, and always-on RFID systems.

2025-12-15
CYKEO CYKEO-M1 drone rfid module is a compact UHF RFID reader module designed for drones and UAV platforms. It supports long-range aerial scanning, fast multi-tag reading, and stable performance in wind, vibration, and outdoor environments.

2025-12-15
CYKEO CYKEO-M4 RC522 RFID Module is an industrial-grade UHF RFID reader with 4 ports, supporting ISO, EPC, and GB protocols. High-speed, accurate reading for IoT, automation, and warehouse applications.

2025-12-15
CYKEO CYKEO-M8 Module RFID is an 8-port UHF R2000 RFID Module designed for high-density, multi-tag environments. Stable 33dBm output, ISO & GB protocol support, ideal for warehouses, factories, and automated systems.

2025-12-15
CYKEO CYKEO-M16 RFID Module is a 16-port UHF RFID reader module based on the R2000 chipset. Designed for dense tag environments, it supports ISO and GB standards and delivers stable multi-antenna control for industrial automation.

2025-12-15
The CYKEO CYKEO-M16L RFID Reader Module is a 16-channel UHF RFID core designed for dense tag environments. With adjustable 33dBm output, multi-protocol support, and stable multi-antenna control, this RFID Tag Reader Module fits industrial automation, warehouse systems, and large-scale IoT deployments.

2025-12-15
CYKEO CYKEO-M8L module RFID is a compact industrial UHF module built for dense tag and multi-antenna environments. With 8 RF ports, adjustable 33 dBm output, and ISO & GB protocol support, it is widely used in factories, warehouses, and automated tracking systems.

2025-12-15
CYKEOCYKEO-M4L UHF RFID Module is a compact 4-channel RFID tag reader module designed for dense tag environments. Supporting ISO and GB protocols, it delivers stable reads up to 10 meters for industrial and IoT systems.

2025-12-04
Cykeo CYKEO-A11 UHF RFID reader antenna delivers 11dBi gain, 840-960MHz frequency range, and IP65 ruggedness for retail, logistics, and industrial RFID systems. Features low VSWR and easy installation.

2025-12-04
CYKEO Antenna RFID Reader delivers stable long-range UHF performance with a 10.5dBi directional design, built for warehouses, conveyor portals, and industrial RFID systems. This rfid reader antenna provides 20m+ read distance and rugged IP67 protection.

2025-12-04
Cykeo CYKEO-PHF3 industrial HF RFID Antenna offers 24-point dynamic tracking, ISO 14443A/15693 protocols, metal-environment stability for archives/libraries/manufacturing.

2025-12-04
Cykeo CYKEO-A5B industrial Linear RFID Antenna delivers 5dBi gain, ≤1.5:1 VSWR, and IP65 rugged design for warehouse, production line, and logistics UHF systems.

2025-12-04
Cykeo’s CYKEO-B12 Long Range RFID Antenna delivers 15m+ read range with 12dBi gain, IP65 rugged design, and global 840-960MHz UHF support. Ideal for warehouse/logistics asset tracking.

2025-12-04
Cykeo CYKEO-B10 Long Distance RFID Antenna offers 10dBi gain, 840-960MHz frequency range, IP65 rating, and 20m+ coverage for logistics/warehousing/ETC systems. Low VSWR ensures stable signal transmission.

2025-12-04
Cykeo CYKEO-A6 UHF RFID panel antenna features 6dBi gain, 840-960MHz broadband, IP65 metal-ready housing for logistics/smart retail. 18mm ultra-thin design with tool-free mounting.

2025-12-04
Cykeo CK-A3 industrial antenna RFID UHF offers 5m+ tag detection, ≤1.3:1 VSWR, IP65 rugged design, and global UHF spectrum compatibility (840-960MHz) for warehouses, factories, and retail.

2025-12-04
Cykeo CYKEO-B5 directional RFID antenna provides 5dBi gain with 60° narrow beamwidth for precise inventory tracking. IP65-rated, global UHF frequency support, and low VSWR.

2025-12-04
Create your own high-performance DIY RFID antenna! 5dBi gain, 840-960MHz tunable, step-by-step guides. Compatible with Arduino, Raspberry Pi, and commercial UHF readers.

2025-12-04
Cykeo CYKEO-A7 Flexible RFID Antenna features 840-960MHz wideband tuning, 7dBi gain, and IP68 rating for medical/retail/industrial curved surface deployments. 98% read accuracy with peel-and-stick installation.

2025-12-04
Cykeo CYKEO-B5A industrial Passive RFID Antenna delivers 5dBi gain, 70° beamwidth, and -40°C~55°C operation for warehouses/smart cabinets. Compatible with Zebra/Impinj readers.

2025-12-04
Cykeo’s CYKEO-A9B High Gain RFID Antenna delivers 15m+ read range with 9dBi amplification. Features IP54 rugged design, 840-960MHz bandwidth, and 80° beamwidth for warehouse/manufacturing RFID systems.

2025-12-03
Cykeo’s enterprise-grade 8dbi Impinj RFID Antenna 10m+ read range with 840-960MHz tuning. Features IP65 housing, 1.4 VSWR, 35° beamwidth for retail/warehouse RFID systems.

2025-12-03
Cykeo CYKEO-A9 industrial UHF RFID antenna delivers 9dBi gain, 840-960MHz frequency range, and IP65 protection for warehouse/logistics/retail RFID systems. Features N-type connector and ≤1.3:1 VSWR.

2025-12-03
CYKEO UHF RFID Antenna built for long-distance and industrial applications. This antenna rfid uhf delivers strong gain, outdoor durability, and reliable tag performance in warehouses, yards, and vehicle ID systems.

2025-12-03
CYKEO Antenna RFID delivers reliable long-range UHF performance in warehouses, retail shelves, and cold-chain environments. This compact uhf rfid antenna provides stable reads with circular polarization and ultra-wide 840–960 MHz support, ideal for industrial tracking, smart shelves, and asset monitoring.

2025-12-03
Cykeo’s CYKEO-C8 UHF RFID antennas delivers 8dBi gain, 840-960MHz full-band coverage, and IP65 ruggedness for manufacturing/warehouse RFID systems. Industrial RFID Antennas Features

2025-12-03
Cykeo’s 8dBi UHF RFID antenna and reader kit delivers 10m+ range, 840-960MHz broadband, and IP65 ruggedness for factories, warehouses, and logistics. ISO 18000-6C & EPC Gen2 certified.

2025-12-03
Cykeo CYKEO-A9A industrial UHF RFID reader and antenna kit delivers 10m range, 500 tags/sec, IP65 ruggedness for manufacturing/logistics. Supports EPC Gen2, ISO18000-6C.

2025-12-03
Cykeo’s CYKEO-A12C UHF Large RFID Antenna delivers 12dBi gain, 840-960MHz global frequency, IP65 ruggedness for logistics/warehousing/automotive. 40° beamwidth ensures stable 15m+ tag reads.

2025-12-02
CYKEO Near Field RFID Antenna provides precise 5–30 cm reading for shelves, cabinets, and workstations. This compact rfid shelf antenna delivers stable short-range performance around metal and clutter, ideal for pharmacies, libraries, and electronics sorting.

2025-12-02
Cykeo’s industrial long range RFID reader delivers 20-meter scanning, 500+ tags/sec speed, and IP67 waterproof design for automated warehouses, logistics, and harsh environment applications.

2025-12-02
Cykeo’s CYKEO-RA6L industrial RFID long range reader features 20m read distance, 500 tags/sec speed, and IP67 protection. Ideal for warehouse automation, manufacturing WIP tracking, and smart logistics. Supports ISO 18000-6C/6B protocols.

2025-12-02
CYKEO Long Range RFID Tag Reader built for outdoor and industrial operations. This Outdoor RFID Reader delivers 20m read distance, fast tag processing, and IP67 durability for wide-area tracking.

2025-12-02
Cykeo CYKEO-RA12L industrial Long Range RFID Reader delivers 20m read range, 200+ tags/sec scanning, and IP67 protection for manufacturing/logistics applications. Supports ISO 18000-6C/GB protocols.

2025-12-01
Cykeo CYKEO-B9 UHF Bluetooth handheld RFID scanner features 12m UHF range, 200+ tags/sec scanning, IP67 rugged design for retail/warehouse/pharma. Supports Android SDK & real-time Bluetooth 5.0 transmission.

2025-12-01
Cykeo CYKEO-B4 UHF Handheld RFID Reader scanner delivers 1300 tags/sec reading, 30m UHF range, and 12-hour battery life. IP65 rugged design with barcode/NFC/ID scanning for retail/manufacturing/logistics.

2025-12-01
Cykeo CYKEO-B2 industrial UHF RFID handheld offers 10m range, 500 tags/sec scanning, Android 11 OS, and IP65 rugged design for retail/warehouse/manufacturing.