From 864f0128f18e58bb4d529738bc74650e02317e20 Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Sat, 1 Feb 2025 06:04:51 +0100 Subject: [PATCH] Afficher l'equipe lors du demarage --- IO.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/IO.hpp b/IO.hpp index 48c2fef..8c3de08 100644 --- a/IO.hpp +++ b/IO.hpp @@ -90,8 +90,7 @@ class IO { { static unsigned long last_color_change_time {0}; static bool has_color_changed {true}; - - bool is_color_blue = (digitalRead(PIN_BUTTON_COLOR) == HIGH); + static bool is_color_blue {true}; if(m_is_color_blue != is_color_blue) { @@ -125,6 +124,8 @@ class IO { m_is_tirette_pulled = (digitalRead(PIN_TIRETTE) == HIGH); m_is_color_blue = is_color_blue; + is_color_blue = (digitalRead(PIN_BUTTON_COLOR) == HIGH); + if(m_is_motor_control_activated) { m_updateMotorsControl();