! * @brief Converts Celcius to Fahrenheit * @param c * value in Celcius * @return float value in Fahrenheit */
| 130 | * @return float value in Fahrenheit |
| 131 | */ |
| 132 | float DHT::convertCtoF(float c) { |
| 133 | return c * 1.8 + 32; |
| 134 | } |
| 135 | |
| 136 | /*! |
| 137 | * @brief Converts Fahrenheit to Celcius |
nothing calls this directly
no outgoing calls
no test coverage detected