From f3b864392366cbef862f8cca493c2ff0e72c94db Mon Sep 17 00:00:00 2001
From: Ben Harris <bjh21@bjh21.me.uk>
Date: Thu, 04 Feb 2021 09:39:48 +0000
Subject: [PATCH] Add support for the NFC reader in a Dell Latitude 5310 2-in-1

---
 nfc.py |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/nfc.py b/nfc.py
index 444e891..ca91192 100755
--- a/nfc.py
+++ b/nfc.py
@@ -19,6 +19,7 @@
 	SUPPORTED_DEVICES = [
 		UsbDeviceMatcher({'idVendor': 0x0A5C, 'idProduct': 0x5832}, lambda device: __import__('cv2').ControlVault2(device)),
 		UsbDeviceMatcher({'idVendor': 0x0A5C, 'idProduct': 0x5834}, lambda device: __import__('cv2').ControlVault2(device)),
+		UsbDeviceMatcher({'idVendor': 0x0A5C, 'idProduct': 0x5842}, lambda device: __import__('cv3').ControlVault3(device)),
 		UsbDeviceMatcher({'idVendor': 0x0A5C, 'idProduct': 0x5843}, lambda device: __import__('cv3').ControlVault3(device)),
 	]
 

--
Gitblit v1.9.1