From fe7474dbfc53ff97d240323a412e8d58049de050 Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Fri, 31 Jan 2025 22:48:10 +0100 Subject: [PATCH] Affichage de l'equipe lors du changement. --- IO.hpp | 44 +++++++++++++++++++++++++++++++++++++++++++- Main.ino | 3 --- 2 files changed, 43 insertions(+), 4 deletions(-) diff --git a/IO.hpp b/IO.hpp index 865fd8d..1845991 100644 --- a/IO.hpp +++ b/IO.hpp @@ -7,6 +7,7 @@ #include #include #include +#include "Ressources.hpp" #define PIN_TIRETTE 5 #define PIN_BUTTON_COLOR 6 @@ -75,13 +76,54 @@ class IO { nb_errors += m_initScreen(); + if(!nb_errors) + { + m_screen.setTextSize(1); + m_screen.setTextColor(WHITE, BLACK); + m_screen.setFont(&Res::Fonts::Freshman12pt7b); + } + return nb_errors; } int update() { + static unsigned long last_color_change_time {0}; + static bool has_color_changed {true}; + + bool is_color_blue = (digitalRead(PIN_BUTTON_COLOR) == HIGH); + + if(m_is_color_blue != is_color_blue) + { + m_screen.clearDisplay(); + m_screen.setCursor(0, 20); + + if(is_color_blue) + { + m_screen.print("Blue\nTeam"); + } + else + { + m_screen.print("Yellow\nTeam"); + } + + last_color_change_time = millis(); + + has_color_changed = true; + } + + if(millis() - last_color_change_time > 1000 && has_color_changed) + { + m_screen.clearDisplay(); + //m_screen.drawBitmap(38, 0, Res::Imgs::riombotique, 52, 64, WHITE); + //m_screen.drawBitmap(75, 0, Imgs::poivron_robotique, 52, 64, WHITE); + m_screen.drawBitmap(27, 0, Res::Imgs::diable_gaga, 75, 64, WHITE); + + has_color_changed = false; + } + m_is_tirette_pulled = (digitalRead(PIN_TIRETTE) == HIGH); - m_is_color_blue = (digitalRead(PIN_BUTTON_COLOR) == HIGH); + m_is_color_blue = is_color_blue; if(m_is_motor_control_activated) { diff --git a/Main.ino b/Main.ino index 3699d98..a0d1f88 100644 --- a/Main.ino +++ b/Main.ino @@ -60,9 +60,6 @@ void setup() while(true); } - my_IO.getScreen()->drawBitmap(38, 0, Res::Imgs::riombotique, 52, 64, WHITE); - //my_IO.getScreen()->drawBitmap(75, 0, Imgs::poivron_robotique, 52, 64, WHITE); - Serial.println("Initalisation Finished"); my_IO.motorControlOff();