python-mercuryapi icon indicating copy to clipboard operation
python-mercuryapi copied to clipboard

Python wrapper for the ThingMagic Mercury API

Results 33 python-mercuryapi issues
Sort by recently updated
recently updated
newest added

Please see snippets from my program log file as well as a screenshot of the system time vs the time being printed in the program from the logger as well...

OS: ubuntu 18.04 python 3.6 reader model: Izar here is my code : ``` ` #!/usr/bin/env python3 from __future__ import print_function import time from datetime import datetime import mercury rfid_reader...

**i am use this code:** reader = mercury.Reader("tmr:///dev/ttyUSB0", baudrate=115200) reader.set_region("EU3") reader.set_read_plan([1], "GEN2",bank=["tid"] ,read_power=1900) reader.start_reading(lambda tag: print(tag.tid, tag.antenna, tag.read_count, tag.rssi)) time.sleep(1) **when i execute the code i receive this message:** Traceback...

Hi! This is a really fun api. I got it working with an older Thingmagic Vega reader I bought on ebay and my raspberry pi. I have a question about...

Hello, I am trying to use the gen2 select filtering as described in the documentation, but I keep getting "TypeError:reserved, epc, tid or user mask expected". I am not sure...

Hi, In the GEN2 Select filter Dict, when I set 'action':'on&off' or any other action, the shell displays a "TypeError : invalid action". Do you know why ? I also...

Hello! First off, thanks a ton for this library. I've been using it extensively and it's saved us a ton of time! I recently ran into an issue on a...

Hi, My read program randomly quits. _x = 80905 [EPC(b'E20000196302003718405C2B')] Start: 2020-02-10 14:20:14.658062 Now = 2020-02-11 13:07:33.756684 x = 80906 [EPC(b'E20000196302003718405C2B')] Start: 2020-02-10 14:20:14.658062 Now = 2020-02-11 13:07:34.767924 x =...

Hi, I have a problems with reading TID memory bank. This is my code: ```python import mercury reader = mercury.Reader("tmr:///dev/ttyUSB0") reader.set_region("EU3") reader.set_read_plan([1], "GEN2",bank=["tid"],read_power=2700) while True: epc_list=reader.read(2000) for tag in epc_list:...