Bonjour,
dès que je met la variable (m.mc_2p5) de mon capteur dans une boucle , j'ai ce message d'erreur qui apparait.
la boucle en question :
tft.setCursor(202, 116);
if ((m.mc_2p5) < 10)
tft.setTextColor(HX8357_GREEN);
tft.println(m.mc_2p5);
else if ((m.mc_2p5) >=10 && (m.mc_2p5) <20)
tft.setTextColor(HX8357_ORANGE);
tft.println(m.mc_2p5);
else if ((m.mc_2p5) > 20)
tft.setTextColor(HX8357_RED);
tft.println(m.mc_2p5);