// Formula to convert Celsius to Fahrenheit { T(°F) = T(°C) × 9/5 + 32 } float Weather_getTemperatureDegF(void) { float temp = BME280_getTemperature(); //Current room temperature in Degrees Celsius temp = ( (temp * 9) / 5 )+ 32; return temp; }