#include "toto.h"
void setup() {
pinMode(PORT_LED,OUTPUT);
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(PORT_LED,HIGH);
delay(500);
digitalWrite(PORT_LED,LOW);
delay(500);
}