DESCRIPTION
I use the Kivy framework and run a script in Python 3 that reads the input from a HID device. The device is a bar code scanner and simulates a keyboard.
PROBLEM
The script opens a popup and the bar reading procedure in background, both at the same time. Every attempt to read the bar code I have to be in the active window. In my case this is the prompt (console). This means I havo to click on the console window and only then the reader works. This happens regardless of how I call the reading procedure from the main script (method, thread, subprocess, Clock.schedule_once). How can I get the input outside the prompt window e.g. in the main kivy gui outside the console?
These other posts did help but did not provide an answer:
- How can I get a String from HID device in Python with evdev?
- python :Read from a USB HID device
- How can I get a String from HID device in Python with evdev?
- Read HID input while window is "out of focus" in Python
CODE
Using str = input("")
as subprocess:
#!/usr/bin/python3.5 python3.5
# -*- coding: utf-8 -*-
# This script reads the output from HID device e.g. bar/rfid scanner
import sys
import inspect
import csv
# return the current line number
def lineno():
return inspect.currentframe().f_back.f_lineno
str = input("Enter your input: ")
Using evdev.ecodes.EV_KEY
as subprocess:
import evdev
from evdev import InputDevice, categorize, ecodes
device = evdev.InputDevice('/dev/input/event20')
while True:
try:
for event in device.read_loop():
if event.type == evdev.ecodes.EV_KEY:
print(evdev.categorize(event))
except:
print("Keyboard Interrupt")
break
I find a solution following this post here https://khanhicetea.com/post/read_input_from_usb_keyboard_in_linux/. I call the input detection file as a subprocess. Since I did not found a quick substitute for the
enter
key in theCODE_MAP_CHAR{}
, I added thescancodes{}
with a different type of code for theenter
key. To find out the names and other attributes of different devices usecat /proc/bus/input/devices
. Below is the working code.