Move temperature display helper from components to helpers (#10555)

This commit is contained in:
Fabian Affolter 2017-11-14 10:36:18 +01:00 committed by Pascal Vizeli
parent b1afed9e52
commit d25f676711
9 changed files with 186 additions and 116 deletions

View file

@ -417,3 +417,8 @@ SPEED_MS = 'speed_ms' # type: str
ILLUMINANCE = 'illuminance' # type: str
WEEKDAYS = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']
# The degree of precision for platforms
PRECISION_WHOLE = 1
PRECISION_HALVES = 0.5
PRECISION_TENTHS = 0.1