int mipin =12;
void setup() {
// put your setup code here, to run once:
pinMode(mipin, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(mipin , HIGH);
delay(500);
digitalWrite(mipin, LOW);
delay(500);
}
int mipin =12;
void setup() {
// put your setup code here, to run once:
pinMode(mipin, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(mipin , HIGH);
delay(500);
digitalWrite(mipin, LOW);
delay(500);
}