dallas ds1820

The LED will be lit only if the temperature is exactly 25. Try this. The LED will be lit if the temp is at or above 25.

   if(insideThermometer >= 25){
    digitalWrite(13, HIGH);
  }
  else {
    digitalWrite(13,LOW); 
  }