improve WaitType blink_pattern selection (code readability)

This commit is contained in:
ju6ge 2025-02-27 21:44:02 +01:00
parent 9d0eea23e1
commit b1074db71c
Signed by: judge
GPG Key ID: 6512C30DD8E017B5

View File

@ -62,6 +62,17 @@ enum WaitType {
MqttConfig, 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)] #[derive(Serialize, Deserialize, Debug, PartialEq, Default)]
/// Light State tracking data for mqtt /// Light State tracking data for mqtt
struct LightState { struct LightState {
@ -917,15 +928,12 @@ fn update_plant_state(
} }
fn wait_infinity(wait_type: WaitType, reboot_now: Arc<AtomicBool>) -> ! { fn wait_infinity(wait_type: WaitType, reboot_now: Arc<AtomicBool>) -> ! {
let delay = match wait_type { let delay = wait_type.blink_pattern();
WaitType::MissingConfig => 500_u32,
WaitType::ConfigButton => 100_u32,
WaitType::MqttConfig => 200_u32,
};
let mut led_count = 8; let mut led_count = 8;
loop { loop {
if wait_type == WaitType::MissingConfig { if wait_type == WaitType::MissingConfig {
led_count = led_count + 1; led_count += 1;
if led_count > 8 { if led_count > 8 {
led_count = 1; led_count = 1;
} }