sketch_testSerie.ino 256 B

1234567891011121314
  1. void setup() {
  2. Serial.begin(9600); //initial the Serial
  3. }
  4. void loop()
  5. { int i = 0;
  6. Serial.println("compteur ");
  7. delay(5000);
  8. if(Serial.available())
  9. {
  10. Serial.println("compteur "); //send what has been received
  11. }
  12. }