2015-08-17 04:36:33 +00:00
|
|
|
"""
|
|
|
|
homeassistant.util.temperature
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Temperature util functions.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2015-08-17 05:06:01 +00:00
|
|
|
def fahrenheit_to_celcius(fahrenheit):
|
2015-08-17 04:36:33 +00:00
|
|
|
""" Convert a Fahrenheit temperature to Celcius. """
|
|
|
|
return (fahrenheit - 32.0) / 1.8
|
|
|
|
|
|
|
|
|
2015-08-17 05:06:01 +00:00
|
|
|
def celcius_to_fahrenheit(celcius):
|
2015-08-17 04:36:33 +00:00
|
|
|
""" Convert a Celcius temperature to Fahrenheit. """
|
|
|
|
return celcius * 1.8 + 32.0
|