Computer Science, asked by lindassam2006, 10 months ago

/* To make an LED blink using variables */
#define LEDPIN 13
int time void setup() {
pinMode(LEDPIN,OUTPUT);
}
void loop() {
digitalWrite(LEDPIN,HIGH); delay(time);
digitalWrite(LEDPIN,LOW); delay(time);
}
IT'S SHOWING INITIALIZER BEFORE VOID REQUIRED! HOW TO FIX THIS

Answers

Answered by AJWarriors
1

Answer:

Remove int time to remove the error

Similar questions