expected primary-expression before ')' token
this is the error
int LED1=2;
int LED2=3;
int LED3=4;
int LED4=5;
int BOTTON=13;
void setup() {
// put your setup code here, to run once:
pinMode(LED1,OUTPUT);
pinMode(LED2,OUTPUT);
pinMode(LED3,OUTPUT);
pinMode(LED4,OUTPUT);
pinMode(BOTTON,INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
if()
{
digitalRead (BOTTON==HIGH);
digitalWrite (LED1,HIGH);
digitalWrite (LED2,HIGH);
digitalWrite (LED3,LOW);
digitalWrite (LED4,LOW);
}