// Formula to convert Dew Point in Celsius to Fahrenheit { DP(°F) = DP(°C) × 9/5 + 32 }, where DP = Dew Point.

float DewPointDegF(void){

    float dewPoint = DewPointDegC(); //Dew Point in Degrees Celsius
    dewPoint = ( (dewPoint * 9) / 5 )+ 32;
    return dewPoint;

}