Skip to content

Commit

Permalink
Add support for 2024 models (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
Drakanio authored Feb 10, 2024
1 parent b191604 commit 6356a24
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ use std::{

pub mod error;

const KNOWN_DEVICE_INFOS: [(u16, u16, u16, u16); 8] = [
const KNOWN_DEVICE_INFOS: [(u16, u16, u16, u16); 10] = [
(0x048d, 0xc995, 0xff89, 0x00cc), // 2024
(0x048d, 0xc993, 0xff89, 0x00cc), // 2024 LOQ
(0x048d, 0xc985, 0xff89, 0x00cc), // 2023
(0x048d, 0xc984, 0xff89, 0x00cc), // 2023
(0x048d, 0xc983, 0xff89, 0x00cc), // 2023 LOQ
Expand Down

0 comments on commit 6356a24

Please sign in to comment.