Great

i've used the led_blink script and add a printString
void loop()
{
digitalWrite(ledPin, HIGH); // sets the LED on
printString ("Allume"); // envoie une chaine sur le port serie
printByte(10); // EOLN
printByte(13); // CR (retour charriot)
delay(1000); // waits for a second
digitalWrite(ledPin, LOW); // sets the LED off
printString ("Eteint"); // envoie une chaine sur le port serie
printByte(10); // EOLN
printByte(13); // CR (retour charriot)
delay(1000); // waits for a second
}
cool.
I've tested with the serproxy (thx Massimo for the late answer) and Flash (code from instantSoup) and works great too.
thanks :-*
PS: what is an EOLN ?...
I've found : "End Of LiNe"
