int compteur = 0;
unsigned long temps = 0;
unsigned long intervalle = 1000;
void setup() {
Serial.begin(9600);
}
void loop() {
unsigned long temps_courant = millis();
if (temps_courant - temps >= intervalle) {
temps = temps_courant;
compteur++;
Serial.println(compteur);
}
}