From be5d34dc0dce930376ec33eb85c4b6e045c8ff28 Mon Sep 17 00:00:00 2001 From: 13r0ck Date: Mon, 31 Oct 2022 17:40:31 -0600 Subject: [PATCH] Add other launch keyboards --- tool/src/main.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tool/src/main.rs b/tool/src/main.rs index b743e44..39d0a11 100644 --- a/tool/src/main.rs +++ b/tool/src/main.rs @@ -402,7 +402,13 @@ fn main() { #[allow(clippy::single_match)] match (info.vendor_id(), info.product_id(), info.interface_number()) { // System76 launch_1 - (0x3384, 0x0001, 1) => { + (0x3384, 0x0001, 1) | + // System76 launch_lite_1 + (0x3384, 0x0005, 1) | + // System76 launch_2 + (0x3384, 0x0006, 1) | + // System76 launch_heavy_1 + (0x3384, 0x0007, 1) => { let device = info.open_device(&api)?; let access = AccessHid::new(device, 10, 100)?; return Ok(Ec::new(access)?.into_dyn());