From 17a46e844e3792433ed955d215f3cc03f3400816 Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Fri, 4 Apr 2025 15:46:55 +0200 Subject: [PATCH] Add Mshroom machine implementation --- src/machine/mod.rs | 1 + src/machine/mshroom.rs | 45 ++++++++++++++++++++++++++++++++++++++++++ src/main_loop.rs | 3 +++ src/settings.rs | 3 ++- 4 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 src/machine/mshroom.rs diff --git a/src/machine/mod.rs b/src/machine/mod.rs index f6cddfe..fd8b84f 100644 --- a/src/machine/mod.rs +++ b/src/machine/mod.rs @@ -3,6 +3,7 @@ use crate::rgb; pub mod jiji; pub mod lyss_metal; pub mod lyss_metal2; +pub mod mshroom; const RGB_FUSION2_GPU_REG_COLOR: u8 = 0x40; const RGB_FUSION2_GPU_REG_MODE: u8 = 0x88; diff --git a/src/machine/mshroom.rs b/src/machine/mshroom.rs new file mode 100644 index 0000000..9aa7559 --- /dev/null +++ b/src/machine/mshroom.rs @@ -0,0 +1,45 @@ +use crate::{corsair_vengeance, cpu_temperature, rgb}; + +use super::Machine; + +pub struct Mshroom { + ram: Vec, +} + +impl Mshroom { + pub fn new() -> anyhow::Result { + let machine = Self { + ram: vec![ + corsair_vengeance::Controller::new(0x19), + corsair_vengeance::Controller::new(0x1B), + ], + }; + + Ok(machine) + } +} + +impl Machine for Mshroom { + fn set_color_1(&mut self, color: &rgb::Rgb) -> anyhow::Result<()> { + for controller in &self.ram { + controller.set_color(color); + } + Ok(()) + } + + fn set_color_2(&mut self, color: &rgb::Rgb) -> anyhow::Result<()> { + Ok(()) + } // No color 2. + + fn get_gpu_tmp(&self) -> f32 { + // unsafe { intel_arc::GetTemperature(self.gpu_devices, 0) as f32 } + // self.gpus[0].thermal_settings(None).unwrap()[0] + // .current_temperature + // .0 as f32 + 0. + } + + fn get_cpu_tmp(&self) -> f32 { + cpu_temperature::read() + } +} diff --git a/src/main_loop.rs b/src/main_loop.rs index a8b7618..8e88ecf 100644 --- a/src/main_loop.rs +++ b/src/main_loop.rs @@ -51,6 +51,9 @@ pub fn main_loop(completed: Arc) { machine::lyss_metal2::MachineLyssMetal2::new() .expect("Unable to create MachineLyssMetal2"), ), + settings::MachineName::Mshroom => { + Box::new(machine::mshroom::Mshroom::new().expect("Unable to create Mshroom")) + } }; let mut kernel = [0f32; consts::KERNEL_SIZE_SAMPLES]; diff --git a/src/settings.rs b/src/settings.rs index 54c880b..feaa201 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -13,6 +13,7 @@ pub enum MachineName { Jiji, LyssMetal, LyssMetal2, + Mshroom, } #[derive(Debug, Deserialize, Serialize)] @@ -32,7 +33,7 @@ type Result = std::result::Result>; impl Settings { fn default() -> Self { Settings { - machine_name: MachineName::Jiji, + machine_name: MachineName::Mshroom, cold_color_1: Rgb { red: 0, green: 255, -- 2.49.0