notifications: add missing protocol names
Signed-off-by: Filipe Laíns <lains@archlinux.org>
This commit is contained in:
parent
6981555804
commit
51dd2a5d28
|
@ -154,9 +154,15 @@ def _process_hidpp10_notification(device, status, n):
|
||||||
|
|
||||||
# wireless link notification
|
# wireless link notification
|
||||||
if n.sub_id == 0x41:
|
if n.sub_id == 0x41:
|
||||||
protocol_name = ('unifying (eQuad DJ)' if n.address == 0x04
|
protocol_name = ('Bluetooth' if n.address == 0x01
|
||||||
else 'eQuad' if n.address == 0x03
|
else '27 MHz' if n.address == 0x02
|
||||||
else 'M185' if n.address == 0x0A
|
else 'QUAD or eQUAD' if n.address == 0x03
|
||||||
|
else 'eQUAD step 4 DJ' if n.address == 0x04
|
||||||
|
else 'DFU Lite' if n.address == 0x05
|
||||||
|
else 'eQUAD step 4 Lite' if n.address == 0x06
|
||||||
|
else 'eQUAD step 4 Gaming' if n.address == 0x07
|
||||||
|
else 'eQUAD step 4 for gamepads' if n.address == 0x08
|
||||||
|
else 'eQUAD nano Lite' if n.address == 0x0A
|
||||||
else 'Lightspeed 1' if n.address == 0x0C
|
else 'Lightspeed 1' if n.address == 0x0C
|
||||||
else 'Lightspeed 1_1' if n.address == 0x0D
|
else 'Lightspeed 1_1' if n.address == 0x0D
|
||||||
else None)
|
else None)
|
||||||
|
|
Loading…
Reference in New Issue