Need Help With "If" Statments being ignored

To the first one, partially from the school i went to, they forced some odd and bad habits, plus my keyboard shift key goes off when my macro buttons are enabled(Not sure why either)

also here, this is what ended up fixing it on the node/ESP8266:

Serial.println("SetCMD:");
  Serial.println(Temp);
  Serial.println(Temp1);
 delay(250);
 Temp1=String(Temp1);//Does Nothing
// Input.trim();//Does Not Help in any way
//-----Fixed-----
 Temp1.trim();//This Helped Along with moving it outside of the while loop(For Forum)
//For some reason Adding a trim Fixed it, all i did. 
//But when i added this in the while loop, it gets ignored. Odd but it works now
//-----Fixed-----
  if (Temp1 == "IH") {//Changed This To "==" No Error Still No Serial Text
    digitalWrite(LED_BUILTIN, LOW);
    Serial.println("--------");
    Serial.println("LED is now on.");
    delay(100);
    //Temp1="";
  }
  if (Temp1 == "IL") {//Tried Using The "Input" Varible, Still Nope
    digitalWrite(LED_BUILTIN, HIGH);
    Serial.println("--------");
    Serial.println("LED is now off.");
    delay(100);
    //Temp1="";
  }
  if (Temp1 == "RCD") {//Also Tried Wothout The ";", But Still Nope
    Serial.println("--------");
    Serial.println("Temp Number: ");
    Serial.println(Temp);
    Serial.println("--------");
    Serial.println("Temp String: ");
    Serial.println(Temp1);
    Serial.println("--------");
    delay(100);
    //Temp1="";
  }
  if (Temp1 == "Wifi") {//Also Tried Wothout The ";", But Still Nope
    Serial.println("--------");
    Serial.println("SSID: ");
    Serial.println(ssid);
    Serial.println("--------");
    Serial.println("Port: ");
    Serial.println(Port);
    Serial.println("--------");
    Serial.println("IP Address: ");
    Serial.println(WiFi.localIP());
    Serial.println("--------");
    Serial.println("Wifi Status: ");
    Serial.println(WiFi.status());
    Serial.println("--------");
    delay(100);
    //Temp1="";
  }