سلام در کد سنسور tcs320 یه مشکلی دارم . وقتی که سنسور رنگ قرمز رو تشخیص بده یه جای led قرمز تمام led ها روشن می شن . و برای رنگ سبز و آب هم همین طوره همه ی led ها روشن می شن مشکل از کجاست ؟؟؟؟؟

#define S0 4
#define S1 5
#define S2 6
#define S3 7
#define sensorOut 8
int redLed = 10;
int greenLed = 11;
int blueLed = 12;
int red = 0;
int green = 0;
int blue = 0;
int frequency = 0;

void setup() {
pinMode(S0, OUTPUT);
pinMode(S1, OUTPUT);
pinMode(S2, OUTPUT);
pinMode(S3, OUTPUT);
pinMode(sensorOut, INPUT);
pinMode(redLed, OUTPUT);
pinMode(greenLed, OUTPUT);
pinMode(blueLed, OUTPUT);

// Setting frequency-scaling to 20%
digitalWrite(S0,HIGH);
digitalWrite(S1,LOW);

Serial.begin(9600);
}

void loop() {
// Setting red filtered photodiodes to be read
digitalWrite(S2,LOW);
digitalWrite(S3,LOW);
// Reading the output frequency
frequency = pulseIn(sensorOut, LOW);
//Remaping the value of the frequency to the RGB Model of 0 to 255
if( frequency = map(frequency, 25,72,255,0));
// Printing the value on the serial monitor
Serial.print("RED= ");//printing name
Serial.print(frequency);//printing RED color frequency
Serial.print(" ");
digitalWrite(redLed, HIGH); // Turn RED LED ON
digitalWrite(greenLed, LOW);
digitalWrite(blueLed, LOW);
delay(1000);

// Setting Green filtered photodiodes to be read
digitalWrite(S2,HIGH);
digitalWrite(S3,HIGH);
// Reading the output frequency
frequency = pulseIn(sensorOut, LOW);
//Remaping the value of the frequency to the RGB Model of 0 to 255
else if (frequency = map(frequency, 30,90,255,0));
// Printing the value on the serial monitor
Serial.print("GREEN= ");//printing name
Serial.print(frequency);//printing RED color frequency
Serial.print(" ");
digitalWrite(redLed, LOW);
digitalWrite(greenLed, HIGH); // Turn GREEN LED ON
digitalWrite(blueLed, LOW);
delay(1000);

// Setting Blue filtered photodiodes to be read
digitalWrite(S2,LOW);
digitalWrite(S3,HIGH);
// Reading the output frequency
frequency = pulseIn(sensorOut, LOW);
//Remaping the value of the frequency to the RGB Model of 0 to 255
else if ( frequency = map(frequency, 25,70,255,0));
// Printing the value on the serial monitor
Serial.print("BLUE= ");//printing name
Serial.print(frequency);//printing RED color frequency
Serial.println(" ");
digitalWrite(redLed, LOW);
digitalWrite(greenLed, LOW);
digitalWrite(blueLed, HIGH); // Turn BLUE LED ON


delay(1000);
}

ممنون میشم اگه مشکلم رو حل کنید .....