int long duree= 10000;
int long debut= millis();
void setup()
{
Serial.begin(9600);
}
void loop()
{
if (millis()-debut > duree)
{Serial.print("C'EST BON");Serial.println();
debut=millis();
}
}
int long duree= 10000;
int long debut= millis();
void setup()
{
Serial.begin(9600);
}
void loop()
{
if (millis()-debut > duree)
{Serial.print("C'EST BON");Serial.println();
debut=millis();
}
}