From b1074db71c07627da1975eb8e032f0b64904058b Mon Sep 17 00:00:00 2001 From: ju6ge Date: Thu, 27 Feb 2025 21:44:02 +0100 Subject: [PATCH] improve WaitType blink_pattern selection (code readability) --- rust/src/main.rs | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/rust/src/main.rs b/rust/src/main.rs index 07ecfe4..d1fbf6b 100644 --- a/rust/src/main.rs +++ b/rust/src/main.rs @@ -62,6 +62,17 @@ enum WaitType { MqttConfig, } +impl WaitType { + fn blink_pattern(&self) -> u32 { + match self { + WaitType::MissingConfig => 500_u32, + WaitType::ConfigButton => 100_u32, + WaitType::MqttConfig => 200_u32, + } + } +} + + #[derive(Serialize, Deserialize, Debug, PartialEq, Default)] /// Light State tracking data for mqtt struct LightState { @@ -917,15 +928,12 @@ fn update_plant_state( } fn wait_infinity(wait_type: WaitType, reboot_now: Arc) -> ! { - let delay = match wait_type { - WaitType::MissingConfig => 500_u32, - WaitType::ConfigButton => 100_u32, - WaitType::MqttConfig => 200_u32, - }; + let delay = wait_type.blink_pattern(); + let mut led_count = 8; loop { if wait_type == WaitType::MissingConfig { - led_count = led_count + 1; + led_count += 1; if led_count > 8 { led_count = 1; }