// A simple way of flashing an LED with 5 lines of code
// By kidkara
int pin7=7;
void setup() {
// put your setup code here, to run once:
}
void loop() {
pinMode(pin7, INPUT);
delay(500);
pinMode(pin7, OUTPUT);
delay(500);
}
// A simple way of flashing an LED with 5 lines of code
// By kidkara
int pin7=7;
void setup() {
// put your setup code here, to run once:
}
void loop() {
pinMode(pin7, INPUT);
delay(500);
pinMode(pin7, OUTPUT);
delay(500);
}