From 6b4e49ffc50d17572bc18cd71898858ff9996604 Mon Sep 17 00:00:00 2001 From: Lennard Kittner Date: Sun, 19 Oct 2025 15:24:26 +0200 Subject: [PATCH] Query full report more frequently --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index efa763e..490ae2d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -36,7 +36,7 @@ fn main() { std::thread::sleep(refresh_interval); // with the default refresh_interval the state is only actively queried every 3min // querying the device to frequently can lead to instability - match if run_counter % 60 == 0 { + match if run_counter % 30 == 0 { device.active_refresh_state() } else { device.passive_refresh_state()