From abcc5fe02aae4a4747f989fef084abae6d820f22 Mon Sep 17 00:00:00 2001 From: Anthony Dodd Date: Sun, 7 Apr 2024 20:22:51 -0500 Subject: [PATCH] Add newer Thelio Mira models to version matcher --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e5b2a12..59b7851 100644 --- a/src/main.rs +++ b/src/main.rs @@ -86,7 +86,8 @@ fn driver() -> io::Result<()> { ).unwrap_or(String::new()); let curve = match (sys_vendor.as_str(), product_version.as_str()) { - ("System76", "thelio-mira-r1" | "thelio-mira-r2" | "thelio-mira-r3") => { + ("System76", "thelio-mira-r1" | "thelio-mira-r2" | "thelio-mira-r3" + | "thelio-mira-b1" | "thelio-mira-b2" | "thelio-mira-b3" | "thelio-mira-b4") => { debug!("{} {} uses standard fan curve", sys_vendor, product_version); FanCurve::standard() },