diff --git a/bbn_m5tough_active_boat/bbn_m5tough_active_boat.ino b/bbn_m5tough_active_boat/bbn_m5tough_active_boat.ino index a3ed0f1..21ac262 100644 --- a/bbn_m5tough_active_boat/bbn_m5tough_active_boat.ino +++ b/bbn_m5tough_active_boat/bbn_m5tough_active_boat.ino @@ -277,7 +277,7 @@ void loop() { victron_mqtt_client_loop(mqttClient); } bool detected = handle_swipe(); - if (detected || (millis() - last_ui_upd > 250)) { // throttle expensive UI updates, and calculations + if (detected || (millis() - last_ui_upd > 300)) { // throttle expensive UI updates, and calculations derive_data(); update_screen(*screens[page]); last_ui_upd = millis();