// Programme mystère void setup() { Serial.begin(115200); } void loop() { // Sachant que Serial.println("tic tac"); prend environ 1/8ms // Qu'affiche ce programme? if (millis()%1024 == 42) Serial.println("tic tac"); if (millis()%1024 == 42+43) Serial.println("tic toc"); if (millis()%1024 == 42+43+42) Serial.println("tac toc"); }