Add known devices to USB Vendor / Product IDs (#54986)

Co-authored-by: kpine <keith.pine@gmail.com>
This commit is contained in:
J. Nick Koston 2021-08-21 14:56:49 -05:00 committed by GitHub
parent 5329dccd8b
commit 0403ea715e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 32 additions and 13 deletions

View file

@ -210,6 +210,7 @@ MANIFEST_SCHEMA = vol.Schema(
{
vol.Optional("vid"): vol.All(str, verify_uppercase),
vol.Optional("pid"): vol.All(str, verify_uppercase),
vol.Optional("known_devices"): [str],
}
)
],