Kodi Community Forum
[T3] 2.4GHz and IR Air Mouse Remote Control - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Discussions (https://forum.kodi.tv/forumdisplay.php?fid=222)
+--- Forum: Hardware (https://forum.kodi.tv/forumdisplay.php?fid=112)
+--- Thread: [T3] 2.4GHz and IR Air Mouse Remote Control (/showthread.php?tid=278842)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - bacsom - 2017-02-19

There is a fix for the KODI 17 bug. Linux systems identify T3 as a joystick.

For the fix you have to install the program here:
https://github.com/denilsonsa/udev-joystick-blacklist

Probably you also have to add your own remote to the end of the list here: /etc/udev/rules.d/ .


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - gsmtech - 2017-02-21

(2017-02-19, 18:51)bacsom Wrote: There is a fix for the KODI 17 bug. Linux systems identify T3 as a joystick.

For the fix you have to install the program here:
https://github.com/denilsonsa/udev-joystick-blacklist

Probably you also have to add your own remote to the end of the list here: /etc/udev/rules.d/ .

I can confirm the method above works, I fixed my T3 remote that previously was not being detected properly by a Kodi Krypton kszaq on my Amlogic S905 device. I had to discover my T3 Remotes Vendor ID and Product ID and create custom udev rules for it in the blacklist file, as there are many different variants and manufacturers for these remotes the pre-populated rules may not cover your device/variant.

In order to discover your Vendor ID and Product ID, login via SSH console to your device and run the command below:

udevadm monitor -p

then unplug the USB dongle for your remote from your device and plug it back in. You will see your Vendor ID and Product ID captured in the outputs, then simply copy one of the existing rules in the /etc/udev/rules.d/51-these-are-not-joysticks-rm.rules \ file and replace the Vendor ID and product ID with the ones for your device.

Save the file, then reboot your device, your remote should now be working,


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - badkarmaboy - 2017-03-06

(2017-01-20, 00:25)julianmclean Wrote: Ok, bit of an update that may possibly help to contribute to getting the unrecognised keys on the T3 remote recognised in Linux.

Firstly, so far this has all been on my Openelec RPi2...

From reading on t'internet, I found I could use a tool called evtest to find out the scancodes for the buttons, but couldn't get this working on Openelec, so I migrated over to Libreelec and installed their system tools addon, which gave me evtest, and found me some more info on the buttons:

Code:
4 rectangles:
Event: time 1484862141.061309, type 4 (EV_MSC), code 4 (MSC_SCAN), value 7008a
Event: time 1484862141.061309, type 1 (EV_KEY), code 92 (KEY_HENKAN), value 1
Internet Explorer
Event: time 1484862204.261669, type 4 (EV_MSC), code 4 (MSC_SCAN), value c008a
Event: time 1484862204.261669, type 1 (EV_KEY), code 150 (KEY_WWW), value 1
Zoom in:
Event: time 1484862205.813901, type 4 (EV_MSC), code 4 (MSC_SCAN), value c022d
Event: time 1484862205.813901, type 1 (EV_KEY), code 418 (KEY_ZOOMIN), value 1
Zoom out:
Event: time 1484862206.245953, type 4 (EV_MSC), code 4 (MSC_SCAN), value c022e
Event: time 1484862206.245953, type 1 (EV_KEY), code 419 (KEY_ZOOMOUT), value 1
Recent/2 rectangles:
Event: time 1484862247.603470, type 4 (EV_MSC), code 4 (MSC_SCAN), value 700bb
Event: time 1484862247.603470, type 1 (EV_KEY), code 240 (KEY_UNKNOWN), value 1

A bit more reading suggested I could drop a customer hwdb file so after finding (I think) the usb kernel modalias for the remote using:

Code:
udevadm info /dev/input/event0

..I created a hwdb file called "99-t3remote.hwdb" in ~/.config/hwdb.d/ directory:

Code:
# T3 Remote
keyboard:usb:v25A7p2402*
KEYBOARD_KEY_07008a=f8                                  # 4 Rectangles
KEYBOARD_KEY_0c008a=f9                                  # Internet Explorer
KEYBOARD_KEY_0c022d=f10                                 # Zoom In
KEYBOARD_KEY_0c022e=f11                                 # Zoom Out
KEYBOARD_KEY_0700bb=f12                                 # Recent

...which was an attempt to map the keys to something that I hoped Kodi would see - i.e. the F8 to F12 keys.

Unfortunately this doesn't seem to have worked and Kodi log still reports the same thing:

Code:
DEBUG: CLinuxInputDevice::KeyEvent: TranslateKey returned XBMCK_UNKNOWN from code(92)

Anyone got any more experience/knowledge in this area and can say if I'm getting close?

I'm in the same boat, but haven't had time to wrestle (that is find some spare time and distract my wife) with the custom hwdb file yet. I have found this TiVO Slide guide (Chapter 2.3 Fixing the non-functional keys) and comparing it to your version I see several potential issues:

1. Make sure that there is a space at the start of each line that says KEYBOARD_KEY
2. On newer systems, such as Ubuntu 15.10 or OpenELEC 7.0, the udev device matching syntax has changed, and you will need to use evdev:input:b0003v150Ap1203* and evdev:input:b0003v150Ap1201* in place of keyboard:usb:v150Ap1203* and keyboard:usb:v150Ap1201* respectively. See https://wiki.archlinux.org/index.php/Map_scancodes_to_keycodes#Using_udev for more details.

HTH!


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - c-shadow - 2017-03-06

My T3:
Code:
LibreELEC:~ # lsusb
Bus 005 Device 002: ID 1d57:ad03 Xenta

Tried this hwdb, no luck:
Code:
evdev:input:b0005v1D57pAD03*
KEYBOARD_KEY_07008a=f8                                  # 4 Rectangles
KEYBOARD_KEY_0c008a=f9                                  # Internet Explorer
KEYBOARD_KEY_0c022d=f10                                 # Zoom In
KEYBOARD_KEY_0c022e=f11                                 # Zoom Out
KEYBOARD_KEY_0700bb=f12                                 # Recent
Key codes are ok, but evtest still shows KEY_UNKNOWN and the keypresses do not appear at all in Kodi debug log.


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - badkarmaboy - 2017-03-11

Same here @c-shadow... I did everything exactly as written, but it looks like the custom hwdb file is not read at all.


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - c-shadow - 2017-03-11

Which version of Libreelec are you using?
I'm still on 7.0.3 because of the reported problems with T3 recognized as joystick.


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - badkarmaboy - 2017-03-11

kszaq's Libreelec 8.0.0e w/ Kodi 17.1 RC for Amlogic S905/905X (Wetek Play2).
The fix in the first post on this page of the thread is working. Just download this file from the repo: 51-these-are-not-joysticks-rm.rules

Put it into /etc/udev/rules.d/ and add these two lines at the end:
Code:
SUBSYSTEM=="input", ATTRS{idVendor}=="1d57", ATTRS{idProduct}=="ad03", ENV{ID_INPUT_JOYSTICK}=="?*", ENV{ID_INPUT_JOYSTICK}=""

SUBSYSTEM=="input", ATTRS{idVendor}=="1d57", ATTRS{idProduct}=="ad03", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_JOYSTICK}=""
Note: Must be two lines, each starting with SUBSYSTEM=
Line breaks are a mistake of the forum software.

Finally reboot.


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - redkoatz - 2017-03-11

SUBSYSTEM=="input", ATTRS{idVendor}=="1d57", ATTRS{idProduct}=="ad03", ENV{ID_INPUT_JOYSTICK}=="?*", ENV{ID_INPUT_JOYSTICK}=""
SUBSYSTEM=="input", ATTRS{idVendor}=="1d57", ATTRS{idProduct}=="ad03", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_JOYSTICK}=""

These are the lies I added to my joystick rules file under config files/udevrulesd
So that in the current libreelec on my raspberry pi3 my. T3 remote buttons work, ( not just mouse)

This work for a completely different remote with exact same problem but not T3
I don't know where I find the correct id when I run udevadm monitor -p
In a console.

Please help ! If you can give me the correct file I can ssh it to my pi


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - c-shadow - 2017-03-11

Try lsusb from console, like this:
Code:
LibreELEC:~ # lsusb
Bus 005 Device 002: ID 1d57:ad03 Xenta
First ID is the vendor, and second is the product ID.


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - badkarmaboy - 2017-03-11

The command "lsusb" might yield better results See third result line:
Code:
Libreelec:~ # lsusb
Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 002: ID 1d57:ad03 Xenta
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub



RE: [T3] 2.4GHz and IR Air Mouse Remote Control - redkoatz - 2017-03-11

(2017-03-11, 21:31)badkarmaboy Wrote: The command "lsusb" might yield better results See third result line:
Code:
Libreelec:~ # lsusb
Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 002: ID 1d57:ad03 Xenta
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

I first ran one command, then another. First unplugging then plugging back in ( with both Commands) apologies if that isn't correct, I thought it will highlight extra code??
Please help !!


kodi:~ # lsusb
Bus 001 Device 008: ID 1058:0827 Western Digital Technologies, Inc.
Bus 001 Device 007: ID 046d:c31c Logitech, Inc. Keyboard K120
Bus 001 Device 006: ID 14cd:125c Super Top SD card reader
Bus 001 Device 004: ID 1a40:0201 Terminus Technology Inc. FE 2.1 7-port Hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 Fast Ethernet Adapter
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp. SMC9514 Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
kodi:~ # lsusb
Bus 001 Device 008: ID 1058:0827 Western Digital Technologies, Inc.
Bus 001 Device 007: ID 046d:c31c Logitech, Inc. Keyboard K120
Bus 001 Device 006: ID 14cd:125c Super Top SD card reader
Bus 001 Device 009: ID 25a7:2402
Bus 001 Device 004: ID 1a40:0201 Terminus Technology Inc. FE 2.1 7-port Hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 Fast Ethernet Adapter
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp. SMC9514 Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

I don't think the remote is showing up??

kodi:~ # udevadm monitor -p
monitor will print the received events for:
UDEV - the event which udev sends out after rule processing
KERNEL - the kernel uevent

KERNEL[11202.346069] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::numlock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::numlock
SEQNUM=1310
SUBSYSTEM=leds
TRIGGER=none

KERNEL[11202.346354] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::numlock (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::numlock
SEQNUM=1311
SUBSYSTEM=leds

KERNEL[11202.346525] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::capslock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::capslock
SEQNUM=1312
SUBSYSTEM=leds
TRIGGER=none

KERNEL[11202.346688] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::capslock (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::capslock
SEQNUM=1313
SUBSYSTEM=leds

KERNEL[11202.346850] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4:Confusedcrolllock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4:Confusedcrolllock
SEQNUM=1314
SUBSYSTEM=leds
TRIGGER=none

KERNEL[11202.347021] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4:Confusedcrolllock (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4:Confusedcrolllock
SEQNUM=1315
SUBSYSTEM=leds

KERNEL[11202.347233] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::compose (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::compose
SEQNUM=1316
SUBSYSTEM=leds

KERNEL[11202.347502] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::kana (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::kana
SEQNUM=1317
SUBSYSTEM=leds
TRIGGER=none

KERNEL[11202.347752] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::kana (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::kana
SEQNUM=1318
SUBSYSTEM=leds

UDEV [11202.354752] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::numlock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::numlock
SEQNUM=1310
SUBSYSTEM=leds
TRIGGER=none
USEC_INITIALIZED=11202354228

UDEV [11202.355151] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::capslock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::capslock
SEQNUM=1312
SUBSYSTEM=leds
TRIGGER=none
USEC_INITIALIZED=11202354273

UDEV [11202.358984] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::compose (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::compose
SEQNUM=1316
SUBSYSTEM=leds
USEC_INITIALIZED=11202352027

UDEV [11202.360333] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::numlock (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::numlock
SEQNUM=1311
SUBSYSTEM=leds
USEC_INITIALIZED=11202347590

UDEV [11202.362543] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4:Confusedcrolllock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4:Confusedcrolllock
SEQNUM=1314
SUBSYSTEM=leds
TRIGGER=none
USEC_INITIALIZED=11202362197

UDEV [11202.363092] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::capslock (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::capslock
SEQNUM=1313
SUBSYSTEM=leds
USEC_INITIALIZED=11202349781

UDEV [11202.363309] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::kana (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::kana
SEQNUM=1317
SUBSYSTEM=leds
TRIGGER=none
USEC_INITIALIZED=11202363062

UDEV [11202.364371] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4:Confusedcrolllock (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4:Confusedcrolllock
SEQNUM=1315
SUBSYSTEM=leds
USEC_INITIALIZED=11202351601

UDEV [11202.364609] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::kana (leds)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/input4::kana
SEQNUM=1318
SUBSYSTEM=leds
USEC_INITIALIZED=11202356748

KERNEL[11202.382710] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/js0 (input)
ACTION=remove
DEVNAME=/dev/input/js0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/js0
MAJOR=13
MINOR=0
SEQNUM=1319
SUBSYSTEM=input

UDEV [11202.392767] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/js0 (input)
ACTION=remove
DEVLINKS=/dev/input/by-path/platform-3f980000.usb-usb-0:1.5.1:1.0-joystick /dev/input/by-id/usb-FREEWAY_TECHNOLOGY_RFIC-MOUSE-joystick
DEVNAME=/dev/input/js0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/js0
ID_BUS=usb
ID_FOR_SEAT=input-platform-3f980000_usb-usb-0_1_5_1_1_0
ID_INPUT=1
ID_INPUT_JOYSTICK=1
ID_INPUT_KEY=1
ID_INPUT_KEYBOARD=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.0
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_0
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=00
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=13
MINOR=0
SEQNUM=1319
SUBSYSTEM=input
TAGS=Confusedeat:uaccess:
USEC_INITIALIZED=10884293334

KERNEL[11202.416088] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/event0 (input)
ACTION=remove
DEVNAME=/dev/input/event0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/event0
MAJOR=13
MINOR=64
SEQNUM=1320
SUBSYSTEM=input

UDEV [11202.437487] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/event0 (input)
ACTION=remove
DEVLINKS=/dev/input/by-id/usb-FREEWAY_TECHNOLOGY_RFIC-MOUSE-event-joystick /dev/input/by-path/platform-3f980000.usb-usb-0:1.5.1:1.0-event-joystick
DEVNAME=/dev/input/event0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4/event0
ID_BUS=usb
ID_FOR_SEAT=input-platform-3f980000_usb-usb-0_1_5_1_1_0
ID_INPUT=1
ID_INPUT_JOYSTICK=1
ID_INPUT_KEY=1
ID_INPUT_KEYBOARD=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.0
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_0
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=00
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=13
MINOR=64
SEQNUM=1320
SUBSYSTEM=input
TAGS=Confusedeat:uaccess:
USEC_INITIALIZED=10884331020

KERNEL[11202.449288] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4 (input)
ABS=701 3f
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4
EV=12001f
KEY=3f 3007f 0 0 0 0 483ffff 17aff32d bf544446 0 ffff 1 130f93 8b17c007 ffff7bfa d941dfff febeffdf ffefffff ffffffff fffffffe
LED=1f
MODALIAS=input:b0003v25A7p2402e0101-e0,1,2,3,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,8B,8C,8E,8F,90,96,98,9B,9C,9E,9F,A1,A3,A4,A5,A6,A7,A8,A9,AB,AC,AD,AE,B0,B1,B2,B3,B4,B5,B6,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,CE,CF,D0,D1,D2,D4,D8,D9,DB,DF,E0,E1,E4,E7,E8,E9,EA,EB,F0,F1,F4,100,120,121,122,123,124,125,126,127,128,129,12A,12B,12C,12D,12E,12F,161,162,166,16A,16E,172,174,176,178,179,17A,17B,17C,17D,17F,180,182,183,185,188,189,18C,18D,18E,18F,190,191,192,193,195,197,198,199,19A,19C,1A0,1A1,1A2,1A3,1A4,1A5,1A6,1A7,1A8,1A9,1AA,1AB,1AC,1AD,1AE,1AF,1B0,1B1,1B7,1BA,240,241,242,243,244,245,246,250,251,260,261,262,263,264,265,r6,a0,1,2,3,4,5,20,28,29,2A,m4,l0,1,2,3,4,sfw
MSC=10
NAME="FREEWAY TECHNOLOGY RFIC-MOUSE"
PHYS="usb-3f980000.usb-1.5.1/input0"
PRODUCT=3/25a7/2402/101
PROP=0
REL=40
SEQNUM=1321
SUBSYSTEM=input
UNIQ=""

KERNEL[11202.450427] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/usbmisc/hiddev0 (usbmisc)
ACTION=remove
DEVNAME=/dev/usb/hiddev0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/usbmisc/hiddev0
MAJOR=180
MINOR=96
SEQNUM=1322
SUBSYSTEM=usbmisc

KERNEL[11202.450596] remove /usbmisc (class)
ACTION=remove
DEVPATH=/usbmisc
SEQNUM=1323
SUBSYSTEM=class

KERNEL[11202.453125] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/hidraw/hidraw0 (hidraw)
ACTION=remove
DEVNAME=/dev/hidraw0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/hidraw/hidraw0
MAJOR=247
MINOR=0
SEQNUM=1324
SUBSYSTEM=hidraw

KERNEL[11202.453534] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005 (hid)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005
HID_ID=0003:000025A7:00002402
HID_NAME=FREEWAY TECHNOLOGY RFIC-MOUSE
HID_PHYS=usb-3f980000.usb-1.5.1/input0
HID_UNIQ=
MODALIAS=hid:b0003g0001v000025A7p00002402
SEQNUM=1325
SUBSYSTEM=hid

KERNEL[11202.453691] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0 (usb)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0
DEVTYPE=usb_interface
INTERFACE=3/1/1
MODALIAS=usb:v25A7p2402d0200dc00dsc00dp00ic03isc01ip01in00
PRODUCT=25a7/2402/200
SEQNUM=1326
SUBSYSTEM=usb
TYPE=0/0/0

KERNEL[11202.455111] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5/mouse0 (input)
ACTION=remove
DEVNAME=/dev/input/mouse0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5/mouse0
MAJOR=13
MINOR=32
SEQNUM=1327
SUBSYSTEM=input

UDEV [11202.457368] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4 (input)
ABS=701 3f
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/input/input4
EV=12001f
ID_BUS=usb
ID_FOR_SEAT=input-platform-3f980000_usb-usb-0_1_5_1_1_0
ID_INPUT=1
ID_INPUT_JOYSTICK=1
ID_INPUT_KEY=1
ID_INPUT_KEYBOARD=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.0
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_0
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=00
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
KEY=3f 3007f 0 0 0 0 483ffff 17aff32d bf544446 0 ffff 1 130f93 8b17c007 ffff7bfa d941dfff febeffdf ffefffff ffffffff fffffffe
LED=1f
MODALIAS=input:b0003v25A7p2402e0101-e0,1,2,3,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,8B,8C,8E,8F,90,96,98,9B,9C,9E,9F,A1,A3,A4,A5,A6,A7,A8,A9,AB,AC,AD,AE,B0,B1,B2,B3,B4,B5,B6,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,CE,CF,D0,D1,D2,D4,D8,D9,DB,DF,E0,E1,E4,E7,E8,E9,EA,EB,F0,F1,F4,100,120,121,122,123,124,125,126,127,128,129,12A,12B,12C,12D,12E,12F,161,162,166,16A,16E,172,174,176,178,179,17A,17B,17C,17D,17F,180,182,183,185,188,189,18C,18D,18E,18F,190,191,192,193,195,197,198,199,19A,19C,1A0,1A1,1A2,1A3,1A4,1A5,1A6,1A7,1A8,1A9,1AA,1AB,1AC,1AD,1AE,1AF,1B0,1B1,1B7,1BA,240,241,242,243,244,245,246,250,251,260,261,262,263,264,265,r6,a0,1,2,3,4,5,20,28,29,2A,m4,l0,1,2,3,4,sfw
MSC=10
NAME="FREEWAY TECHNOLOGY RFIC-MOUSE"
PHYS="usb-3f980000.usb-1.5.1/input0"
PRODUCT=3/25a7/2402/101
PROP=0
REL=40
SEQNUM=1321
SUBSYSTEM=input
TAGS=Confusedeat:
UNIQ=""
USEC_INITIALIZED=10884261242

UDEV [11202.458004] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/usbmisc/hiddev0 (usbmisc)
ACTION=remove
DEVNAME=/dev/usb/hiddev0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/usbmisc/hiddev0
MAJOR=180
MINOR=96
SEQNUM=1322
SUBSYSTEM=usbmisc
USEC_INITIALIZED=11202450472

UDEV [11202.460619] remove /usbmisc (class)
ACTION=remove
DEVPATH=/usbmisc
SEQNUM=1323
SUBSYSTEM=class
USEC_INITIALIZED=11202451814

UDEV [11202.461501] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/hidraw/hidraw0 (hidraw)
ACTION=remove
DEVNAME=/dev/hidraw0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005/hidraw/hidraw0
MAJOR=247
MINOR=0
SEQNUM=1324
SUBSYSTEM=hidraw
USEC_INITIALIZED=11202453703

UDEV [11202.462416] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005 (hid)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0005
HID_ID=0003:000025A7:00002402
HID_NAME=FREEWAY TECHNOLOGY RFIC-MOUSE
HID_PHYS=usb-3f980000.usb-1.5.1/input0
HID_UNIQ=
MODALIAS=hid:b0003g0001v000025A7p00002402
SEQNUM=1325
SUBSYSTEM=hid
USEC_INITIALIZED=11202455396

UDEV [11202.462982] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0 (usb)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0
DEVTYPE=usb_interface
INTERFACE=3/1/1
MODALIAS=usb:v25A7p2402d0200dc00dsc00dp00ic03isc01ip01in00
PRODUCT=25a7/2402/200
SEQNUM=1326
SUBSYSTEM=usb
TYPE=0/0/0
USEC_INITIALIZED=11202456293

UDEV [11202.463368] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5/mouse0 (input)
ACTION=remove
DEVLINKS=/dev/input/by-path/platform-3f980000.usb-usb-0:1.5.1:1.1-mouse /dev/input/by-id/usb-FREEWAY_TECHNOLOGY_RFIC-MOUSE-if01-mouse
DEVNAME=/dev/input/mouse0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5/mouse0
ID_BUS=usb
ID_INPUT=1
ID_INPUT_MOUSE=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.1
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_1
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=01
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=13
MINOR=32
SEQNUM=1327
SUBSYSTEM=input
USEC_INITIALIZED=10884284343

KERNEL[11202.482566] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5/event1 (input)
ACTION=remove
DEVNAME=/dev/input/event1
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5/event1
MAJOR=13
MINOR=65
SEQNUM=1328
SUBSYSTEM=input

UDEV [11202.498427] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5/event1 (input)
ACTION=remove
DEVLINKS=/dev/input/by-id/usb-FREEWAY_TECHNOLOGY_RFIC-MOUSE-if01-event-mouse /dev/input/by-path/platform-3f980000.usb-usb-0:1.5.1:1.1-event-mouse
DEVNAME=/dev/input/event1
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5/event1
ID_BUS=usb
ID_INPUT=1
ID_INPUT_MOUSE=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.1
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_1
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=01
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=13
MINOR=65
SEQNUM=1328
SUBSYSTEM=input
USEC_INITIALIZED=10884366975

KERNEL[11202.522553] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5 (input)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5
EV=17
KEY=70000 0 0 0 0 0 0 0 0
MODALIAS=input:b0003v25A7p2402e0101-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw
MSC=10
NAME="FREEWAY TECHNOLOGY RFIC-MOUSE"
PHYS="usb-3f980000.usb-1.5.1/input1"
PRODUCT=3/25a7/2402/101
PROP=0
REL=103
SEQNUM=1329
SUBSYSTEM=input
UNIQ=""

KERNEL[11202.523645] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/hidraw/hidraw1 (hidraw)
ACTION=remove
DEVNAME=/dev/hidraw1
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/hidraw/hidraw1
MAJOR=247
MINOR=1
SEQNUM=1330
SUBSYSTEM=hidraw

KERNEL[11202.523819] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006 (hid)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006
HID_ID=0003:000025A7:00002402
HID_NAME=FREEWAY TECHNOLOGY RFIC-MOUSE
HID_PHYS=usb-3f980000.usb-1.5.1/input1
HID_UNIQ=
MODALIAS=hid:b0003g0001v000025A7p00002402
SEQNUM=1331
SUBSYSTEM=hid

KERNEL[11202.523960] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1 (usb)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1
DEVTYPE=usb_interface
INTERFACE=3/1/2
MODALIAS=usb:v25A7p2402d0200dc00dsc00dp00ic03isc01ip02in01
PRODUCT=25a7/2402/200
SEQNUM=1332
SUBSYSTEM=usb
TYPE=0/0/0

KERNEL[11202.525648] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1 (usb)
ACTION=remove
BUSNUM=001
DEVNAME=/dev/bus/usb/001/009
DEVNUM=009
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1
DEVTYPE=usb_device
MAJOR=189
MINOR=8
PRODUCT=25a7/2402/200
SEQNUM=1333
SUBSYSTEM=usb
TYPE=0/0/0

UDEV [11202.526220] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5 (input)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/input/input5
EV=17
ID_BUS=usb
ID_FOR_SEAT=input-platform-3f980000_usb-usb-0_1_5_1_1_1
ID_INPUT=1
ID_INPUT_MOUSE=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.1
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_1
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=01
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
KEY=70000 0 0 0 0 0 0 0 0
MODALIAS=input:b0003v25A7p2402e0101-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw
MSC=10
NAME="FREEWAY TECHNOLOGY RFIC-MOUSE"
PHYS="usb-3f980000.usb-1.5.1/input1"
PRODUCT=3/25a7/2402/101
PROP=0
REL=103
SEQNUM=1329
SUBSYSTEM=input
TAGS=Confusedeat:
UNIQ=""
USEC_INITIALIZED=10884258139

UDEV [11202.527578] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/hidraw/hidraw1 (hidraw)
ACTION=remove
DEVNAME=/dev/hidraw1
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006/hidraw/hidraw1
MAJOR=247
MINOR=1
SEQNUM=1330
SUBSYSTEM=hidraw
USEC_INITIALIZED=11202523682

UDEV [11202.528429] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006 (hid)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0006
HID_ID=0003:000025A7:00002402
HID_NAME=FREEWAY TECHNOLOGY RFIC-MOUSE
HID_PHYS=usb-3f980000.usb-1.5.1/input1
HID_UNIQ=
MODALIAS=hid:b0003g0001v000025A7p00002402
SEQNUM=1331
SUBSYSTEM=hid
USEC_INITIALIZED=11202524557

UDEV [11202.529243] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1 (usb)
ACTION=remove
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1
DEVTYPE=usb_interface
INTERFACE=3/1/2
MODALIAS=usb:v25A7p2402d0200dc00dsc00dp00ic03isc01ip02in01
PRODUCT=25a7/2402/200
SEQNUM=1332
SUBSYSTEM=usb
TYPE=0/0/0
USEC_INITIALIZED=11202524955

UDEV [11202.530347] remove /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1 (usb)
ACTION=remove
BUSNUM=001
DEVNAME=/dev/bus/usb/001/009
DEVNUM=009
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1
DEVTYPE=usb_device
ID_BUS=usb
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_USB_INTERFACES=:030101:030102:
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=189
MINOR=8
PRODUCT=25a7/2402/200
SEQNUM=1333
SUBSYSTEM=usb
TYPE=0/0/0
USEC_INITIALIZED=10884236396

KERNEL[11205.946625] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1 (usb)
ACTION=add
BUSNUM=001
DEVNAME=/dev/bus/usb/001/010
DEVNUM=010
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1
DEVTYPE=usb_device
MAJOR=189
MINOR=9
PRODUCT=25a7/2402/200
SEQNUM=1334
SUBSYSTEM=usb
TYPE=0/0/0

KERNEL[11205.950807] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0 (usb)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0
DEVTYPE=usb_interface
INTERFACE=3/1/1
MODALIAS=usb:v25A7p2402d0200dc00dsc00dp00ic03isc01ip01in00
PRODUCT=25a7/2402/200
SEQNUM=1335
SUBSYSTEM=usb
TYPE=0/0/0

KERNEL[11205.958544] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007 (hid)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007
HID_ID=0003:000025A7:00002402
HID_NAME=FREEWAY TECHNOLOGY RFIC-MOUSE
HID_PHYS=usb-3f980000.usb-1.5.1/input0
HID_UNIQ=
MODALIAS=hid:b0003g0001v000025A7p00002402
SEQNUM=1336
SUBSYSTEM=hid

KERNEL[11205.960019] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6 (input)
ABS=701 3f
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6
EV=12001f
KEY=3f 3007f 0 0 0 0 483ffff 17aff32d bf544446 0 ffff 1 130f93 8b17c007 ffff7bfa d941dfff febeffdf ffefffff ffffffff fffffffe
LED=1f
MODALIAS=input:b0003v25A7p2402e0101-e0,1,2,3,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,8B,8C,8E,8F,90,96,98,9B,9C,9E,9F,A1,A3,A4,A5,A6,A7,A8,A9,AB,AC,AD,AE,B0,B1,B2,B3,B4,B5,B6,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,CE,CF,D0,D1,D2,D4,D8,D9,DB,DF,E0,E1,E4,E7,E8,E9,EA,EB,F0,F1,F4,100,120,121,122,123,124,125,126,127,128,129,12A,12B,12C,12D,12E,12F,161,162,166,16A,16E,172,174,176,178,179,17A,17B,17C,17D,17F,180,182,183,185,188,189,18C,18D,18E,18F,190,191,192,193,195,197,198,199,19A,19C,1A0,1A1,1A2,1A3,1A4,1A5,1A6,1A7,1A8,1A9,1AA,1AB,1AC,1AD,1AE,1AF,1B0,1B1,1B7,1BA,240,241,242,243,244,245,246,250,251,260,261,262,263,264,265,r6,a0,1,2,3,4,5,20,28,29,2A,m4,l0,1,2,3,4,sfw
MSC=10
NAME="FREEWAY TECHNOLOGY RFIC-MOUSE"
PHYS="usb-3f980000.usb-1.5.1/input0"
PRODUCT=3/25a7/2402/101
PROP=0
REL=40
SEQNUM=1337
SUBSYSTEM=input
UNIQ=""

KERNEL[11206.015851] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::numlock (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::numlock
SEQNUM=1338
SUBSYSTEM=leds

KERNEL[11206.015991] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::numlock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::numlock
SEQNUM=1339
SUBSYSTEM=leds
TRIGGER=kbd-numlock

KERNEL[11206.016071] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::capslock (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::capslock
SEQNUM=1340
SUBSYSTEM=leds

KERNEL[11206.016147] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::capslock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::capslock
SEQNUM=1341
SUBSYSTEM=leds
TRIGGER=kbd-capslock

KERNEL[11206.016225] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6:Confusedcrolllock (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6:Confusedcrolllock
SEQNUM=1342
SUBSYSTEM=leds

KERNEL[11206.016301] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6:Confusedcrolllock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6:Confusedcrolllock
SEQNUM=1343
SUBSYSTEM=leds
TRIGGER=kbd-scrolllock

KERNEL[11206.016380] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::compose (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::compose
SEQNUM=1344
SUBSYSTEM=leds

KERNEL[11206.016456] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::kana (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::kana
SEQNUM=1345
SUBSYSTEM=leds

KERNEL[11206.016533] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::kana (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::kana
SEQNUM=1346
SUBSYSTEM=leds
TRIGGER=kbd-kanalock

KERNEL[11206.016647] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/js0 (input)
ACTION=add
DEVNAME=/dev/input/js0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/js0
MAJOR=13
MINOR=0
SEQNUM=1347
SUBSYSTEM=input

KERNEL[11206.016763] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/event0 (input)
ACTION=add
DEVNAME=/dev/input/event0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/event0
MAJOR=13
MINOR=64
SEQNUM=1348
SUBSYSTEM=input

KERNEL[11206.016850] add /class/usbmisc (class)
ACTION=add
DEVPATH=/class/usbmisc
SEQNUM=1349
SUBSYSTEM=class

KERNEL[11206.016951] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/usbmisc/hiddev0 (usbmisc)
ACTION=add
DEVNAME=/dev/usb/hiddev0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/usbmisc/hiddev0
MAJOR=180
MINOR=96
SEQNUM=1350
SUBSYSTEM=usbmisc

KERNEL[11206.017072] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/hidraw/hidraw0 (hidraw)
ACTION=add
DEVNAME=/dev/hidraw0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/hidraw/hidraw0
MAJOR=247
MINOR=0
SEQNUM=1351
SUBSYSTEM=hidraw

KERNEL[11206.018992] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1 (usb)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1
DEVTYPE=usb_interface
INTERFACE=3/1/2
MODALIAS=usb:v25A7p2402d0200dc00dsc00dp00ic03isc01ip02in01
PRODUCT=25a7/2402/200
SEQNUM=1352
SUBSYSTEM=usb
TYPE=0/0/0

KERNEL[11206.022492] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008 (hid)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008
HID_ID=0003:000025A7:00002402
HID_NAME=FREEWAY TECHNOLOGY RFIC-MOUSE
HID_PHYS=usb-3f980000.usb-1.5.1/input1
HID_UNIQ=
MODALIAS=hid:b0003g0001v000025A7p00002402
SEQNUM=1353
SUBSYSTEM=hid

UDEV [11206.023296] add /class/usbmisc (class)
ACTION=add
DEVPATH=/class/usbmisc
SEQNUM=1349
SUBSYSTEM=class
USEC_INITIALIZED=11206023056

KERNEL[11206.024085] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7 (input)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7
EV=17
KEY=70000 0 0 0 0 0 0 0 0
MODALIAS=input:b0003v25A7p2402e0101-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw
MSC=10
NAME="FREEWAY TECHNOLOGY RFIC-MOUSE"
PHYS="usb-3f980000.usb-1.5.1/input1"
PRODUCT=3/25a7/2402/101
PROP=0
REL=103
SEQNUM=1354
SUBSYSTEM=input
UNIQ=""

KERNEL[11206.024952] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7/mouse0 (input)
ACTION=add
DEVNAME=/dev/input/mouse0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7/mouse0
MAJOR=13
MINOR=32
SEQNUM=1355
SUBSYSTEM=input

KERNEL[11206.025253] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7/event1 (input)
ACTION=add
DEVNAME=/dev/input/event1
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7/event1
MAJOR=13
MINOR=65
SEQNUM=1356
SUBSYSTEM=input

KERNEL[11206.025923] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/hidraw/hidraw1 (hidraw)
ACTION=add
DEVNAME=/dev/hidraw1
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/hidraw/hidraw1
MAJOR=247
MINOR=1
SEQNUM=1357
SUBSYSTEM=hidraw

UDEV [11206.029084] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1 (usb)
ACTION=add
BUSNUM=001
DEVNAME=/dev/bus/usb/001/010
DEVNUM=010
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1
DEVTYPE=usb_device
DRIVER=usb
ID_BUS=usb
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_USB_INTERFACES=:030101:030102:
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=189
MINOR=9
PRODUCT=25a7/2402/200
SEQNUM=1334
SUBSYSTEM=usb
TYPE=0/0/0
USEC_INITIALIZED=11206028579

UDEV [11206.032097] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1 (usb)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1
DEVTYPE=usb_interface
DRIVER=usbhid
INTERFACE=3/1/2
MODALIAS=usb:v25A7p2402d0200dc00dsc00dp00ic03isc01ip02in01
PRODUCT=25a7/2402/200
SEQNUM=1352
SUBSYSTEM=usb
TYPE=0/0/0
USEC_INITIALIZED=11206031496

UDEV [11206.033881] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008 (hid)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008
DRIVER=hid-generic
HID_ID=0003:000025A7:00002402
HID_NAME=FREEWAY TECHNOLOGY RFIC-MOUSE
HID_PHYS=usb-3f980000.usb-1.5.1/input1
HID_UNIQ=
MODALIAS=hid:b0003g0001v000025A7p00002402
SEQNUM=1353
SUBSYSTEM=hid
USEC_INITIALIZED=11206033553

UDEV [11206.038866] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0 (usb)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0
DEVTYPE=usb_interface
DRIVER=usbhid
INTERFACE=3/1/1
MODALIAS=usb:v25A7p2402d0200dc00dsc00dp00ic03isc01ip01in00
PRODUCT=25a7/2402/200
SEQNUM=1335
SUBSYSTEM=usb
TYPE=0/0/0
USEC_INITIALIZED=11206037975

UDEV [11206.039229] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/hidraw/hidraw1 (hidraw)
ACTION=add
DEVNAME=/dev/hidraw1
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/hidraw/hidraw1
MAJOR=247
MINOR=1
SEQNUM=1357
SUBSYSTEM=hidraw
USEC_INITIALIZED=11206038512

UDEV [11206.041656] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7 (input)
.INPUT_CLASS=mouse
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7
EV=17
ID_BUS=usb
ID_FOR_SEAT=input-platform-3f980000_usb-usb-0_1_5_1_1_1
ID_INPUT=1
ID_INPUT_MOUSE=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.1
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_1
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=01
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
KEY=70000 0 0 0 0 0 0 0 0
MODALIAS=input:b0003v25A7p2402e0101-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw
MSC=10
NAME="FREEWAY TECHNOLOGY RFIC-MOUSE"
PHYS="usb-3f980000.usb-1.5.1/input1"
PRODUCT=3/25a7/2402/101
PROP=0
REL=103
SEQNUM=1354
SUBSYSTEM=input
TAGS=Confusedeat:
UNIQ=""
USEC_INITIALIZED=11206040705

UDEV [11206.042132] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007 (hid)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007
DRIVER=hid-generic
HID_ID=0003:000025A7:00002402
HID_NAME=FREEWAY TECHNOLOGY RFIC-MOUSE
HID_PHYS=usb-3f980000.usb-1.5.1/input0
HID_UNIQ=
MODALIAS=hid:b0003g0001v000025A7p00002402
SEQNUM=1336
SUBSYSTEM=hid
USEC_INITIALIZED=11206040985

UDEV [11206.044226] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/usbmisc/hiddev0 (usbmisc)
ACTION=add
DEVNAME=/dev/usb/hiddev0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/usbmisc/hiddev0
MAJOR=180
MINOR=96
SEQNUM=1350
SUBSYSTEM=usbmisc
USEC_INITIALIZED=11206043752

UDEV [11206.050158] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/hidraw/hidraw0 (hidraw)
ACTION=add
DEVNAME=/dev/hidraw0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/hidraw/hidraw0
MAJOR=247
MINOR=0
SEQNUM=1351
SUBSYSTEM=hidraw
USEC_INITIALIZED=11206049822

UDEV [11206.051051] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6 (input)
.INPUT_CLASS=joystick
ABS=701 3f
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6
EV=12001f
ID_BUS=usb
ID_FOR_SEAT=input-platform-3f980000_usb-usb-0_1_5_1_1_0
ID_INPUT=1
ID_INPUT_JOYSTICK=1
ID_INPUT_KEY=1
ID_INPUT_KEYBOARD=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.0
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_0
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=00
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
KEY=3f 3007f 0 0 0 0 483ffff 17aff32d bf544446 0 ffff 1 130f93 8b17c007 ffff7bfa d941dfff febeffdf ffefffff ffffffff fffffffe
LED=1f
MODALIAS=input:b0003v25A7p2402e0101-e0,1,2,3,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,8B,8C,8E,8F,90,96,98,9B,9C,9E,9F,A1,A3,A4,A5,A6,A7,A8,A9,AB,AC,AD,AE,B0,B1,B2,B3,B4,B5,B6,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,CE,CF,D0,D1,D2,D4,D8,D9,DB,DF,E0,E1,E4,E7,E8,E9,EA,EB,F0,F1,F4,100,120,121,122,123,124,125,126,127,128,129,12A,12B,12C,12D,12E,12F,161,162,166,16A,16E,172,174,176,178,179,17A,17B,17C,17D,17F,180,182,183,185,188,189,18C,18D,18E,18F,190,191,192,193,195,197,198,199,19A,19C,1A0,1A1,1A2,1A3,1A4,1A5,1A6,1A7,1A8,1A9,1AA,1AB,1AC,1AD,1AE,1AF,1B0,1B1,1B7,1BA,240,241,242,243,244,245,246,250,251,260,261,262,263,264,265,r6,a0,1,2,3,4,5,20,28,29,2A,m4,l0,1,2,3,4,sfw
MSC=10
NAME="FREEWAY TECHNOLOGY RFIC-MOUSE"
PHYS="usb-3f980000.usb-1.5.1/input0"
PRODUCT=3/25a7/2402/101
PROP=0
REL=40
SEQNUM=1337
SUBSYSTEM=input
TAGS=Confusedeat:
UNIQ=""
USEC_INITIALIZED=11206049814

UDEV [11206.051670] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7/mouse0 (input)
.INPUT_CLASS=mouse
ACTION=add
DEVLINKS=/dev/input/by-path/platform-3f980000.usb-usb-0:1.5.1:1.1-mouse /dev/input/by-id/usb-FREEWAY_TECHNOLOGY_RFIC-MOUSE-if01-mouse
DEVNAME=/dev/input/mouse0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7/mouse0
ID_BUS=usb
ID_INPUT=1
ID_INPUT_MOUSE=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.1
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_1
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=01
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=13
MINOR=32
SEQNUM=1355
SUBSYSTEM=input
USEC_INITIALIZED=11206050662

UDEV [11206.056089] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6:Confusedcrolllock (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6:Confusedcrolllock
SEQNUM=1342
SUBSYSTEM=leds
USEC_INITIALIZED=11206055489

UDEV [11206.059579] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6:Confusedcrolllock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6:Confusedcrolllock
SEQNUM=1343
SUBSYSTEM=leds
TRIGGER=kbd-scrolllock
USEC_INITIALIZED=11206059212

UDEV [11206.059871] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::numlock (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::numlock
SEQNUM=1338
SUBSYSTEM=leds
USEC_INITIALIZED=11206059235

UDEV [11206.061117] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::capslock (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::capslock
SEQNUM=1340
SUBSYSTEM=leds
USEC_INITIALIZED=11206060839

UDEV [11206.061341] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::kana (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::kana
SEQNUM=1345
SUBSYSTEM=leds
USEC_INITIALIZED=11206060986

UDEV [11206.062388] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::numlock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::numlock
SEQNUM=1339
SUBSYSTEM=leds
TRIGGER=kbd-numlock
USEC_INITIALIZED=11206062037

UDEV [11206.064244] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::kana (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::kana
SEQNUM=1346
SUBSYSTEM=leds
TRIGGER=kbd-kanalock
USEC_INITIALIZED=11206064052

UDEV [11206.065065] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::compose (leds)
ACTION=add
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::compose
SEQNUM=1344
SUBSYSTEM=leds
USEC_INITIALIZED=11206064886

UDEV [11206.065214] change /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::capslock (leds)
ACTION=change
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/input6::capslock
SEQNUM=1341
SUBSYSTEM=leds
TRIGGER=kbd-capslock
USEC_INITIALIZED=11206064927

UDEV [11206.072562] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/js0 (input)
.INPUT_CLASS=joystick
ACTION=add
DEVLINKS=/dev/input/by-path/platform-3f980000.usb-usb-0:1.5.1:1.0-joystick /dev/input/by-id/usb-FREEWAY_TECHNOLOGY_RFIC-MOUSE-joystick
DEVNAME=/dev/input/js0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/js0
ID_BUS=usb
ID_FOR_SEAT=input-platform-3f980000_usb-usb-0_1_5_1_1_0
ID_INPUT=1
ID_INPUT_JOYSTICK=1
ID_INPUT_KEY=1
ID_INPUT_KEYBOARD=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.0
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_0
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=00
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=13
MINOR=0
SEQNUM=1347
SUBSYSTEM=input
TAGS=Confusedeat:uaccess:
USEC_INITIALIZED=11206071694

UDEV [11206.272469] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/event0 (input)
.INPUT_CLASS=joystick
ACTION=add
DEVLINKS=/dev/input/by-id/usb-FREEWAY_TECHNOLOGY_RFIC-MOUSE-event-joystick /dev/input/by-path/platform-3f980000.usb-usb-0:1.5.1:1.0-event-joystick
DEVNAME=/dev/input/event0
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:25A7:2402.0007/input/input6/event0
ID_BUS=usb
ID_FOR_SEAT=input-platform-3f980000_usb-usb-0_1_5_1_1_0
ID_INPUT=1
ID_INPUT_JOYSTICK=1
ID_INPUT_KEY=1
ID_INPUT_KEYBOARD=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.0
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_0
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=00
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=13
MINOR=64
SEQNUM=1348
SUBSYSTEM=input
TAGS=Confusedeat:uaccess:
USEC_INITIALIZED=11206114199

UDEV [11206.358329] add /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7/event1 (input)
.INPUT_CLASS=mouse
ACTION=add
DEVLINKS=/dev/input/by-id/usb-FREEWAY_TECHNOLOGY_RFIC-MOUSE-if01-event-mouse /dev/input/by-path/platform-3f980000.usb-usb-0:1.5.1:1.1-event-mouse
DEVNAME=/dev/input/event1
DEVPATH=/devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:25A7:2402.0008/input/input7/event1
ID_BUS=usb
ID_INPUT=1
ID_INPUT_MOUSE=1
ID_MODEL=RFIC-MOUSE
ID_MODEL_ENC=RFIC-MOUSE
ID_MODEL_ID=2402
ID_PATH=platform-3f980000.usb-usb-0:1.5.1:1.1
ID_PATH_TAG=platform-3f980000_usb-usb-0_1_5_1_1_1
ID_REVISION=0200
ID_SERIAL=FREEWAY_TECHNOLOGY_RFIC-MOUSE
ID_TYPE=hid
ID_USB_DRIVER=usbhid
ID_USB_INTERFACES=:030101:030102:
ID_USB_INTERFACE_NUM=01
ID_VENDOR=FREEWAY_TECHNOLOGY
ID_VENDOR_ENC=FREEWAY\x20TECHNOLOGY
ID_VENDOR_ID=25a7
MAJOR=13
MINOR=65
SEQNUM=1356
SUBSYSTEM=input
USEC_INITIALIZED=11206163729


which part of this will show my remoteHuh


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - badkarmaboy - 2017-03-11

Bus 001 Device 009: ID 25a7:2402


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - redkoatz - 2017-03-11

(2017-03-11, 22:48)badkarmaboy Wrote: Bus 001 Device 009: ID 25a7:2402

Will I just add that text to the bottom of my joystick file in config files/ ?


RE: [T3] 2.4GHz and IR Air Mouse Remote Control - badkarmaboy - 2017-03-12

You will have to replace idVendor and idProduct with your values:

Code:
Code:
SUBSYSTEM=="input", ATTRS{idVendor}=="25a7", ATTRS{idProduct}=="2402", ENV{ID_INPUT_JOYSTICK}=="?*", ENV{ID_INPUT_JOYSTICK}=""

SUBSYSTEM=="input", ATTRS{idVendor}=="25a7", ATTRS{idProduct}=="2402", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_JOYSTICK}=""



RE: [T3] 2.4GHz and IR Air Mouse Remote Control - redkoatz - 2017-03-12

(2017-03-12, 00:03)badkarmaboy Wrote: You will have to replace idVendor and idProduct with your values:

Code:
Code:
SUBSYSTEM=="input", ATTRS{idVendor}=="25a7", ATTRS{idProduct}=="2402", ENV{ID_INPUT_JOYSTICK}=="?*", ENV{ID_INPUT_JOYSTICK}=""

SUBSYSTEM=="input", ATTRS{idVendor}=="25a7", ATTRS{idProduct}=="2402", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_JOYSTICK}=""


Thanks so much. I appreciate it. It works.
I'll help a few friends now by sharing my file