Add and use percentage constant (#32094)
* Add and use percentage constant * Fix pylint error and broken test
This commit is contained in:
parent
c7f128f286
commit
f1a0ca7cd3
155 changed files with 735 additions and 459 deletions
|
@ -7,7 +7,13 @@ import tellcore.constants as tellcore_constants
|
|||
import voluptuous as vol
|
||||
|
||||
from homeassistant.components.sensor import PLATFORM_SCHEMA
|
||||
from homeassistant.const import CONF_ID, CONF_NAME, CONF_PROTOCOL, TEMP_CELSIUS
|
||||
from homeassistant.const import (
|
||||
CONF_ID,
|
||||
CONF_NAME,
|
||||
CONF_PROTOCOL,
|
||||
TEMP_CELSIUS,
|
||||
UNIT_PERCENTAGE,
|
||||
)
|
||||
import homeassistant.helpers.config_validation as cv
|
||||
from homeassistant.helpers.entity import Entity
|
||||
|
||||
|
@ -55,7 +61,9 @@ def setup_platform(hass, config, add_entities, discovery_info=None):
|
|||
tellcore_constants.TELLSTICK_TEMPERATURE: DatatypeDescription(
|
||||
"temperature", config.get(CONF_TEMPERATURE_SCALE)
|
||||
),
|
||||
tellcore_constants.TELLSTICK_HUMIDITY: DatatypeDescription("humidity", "%"),
|
||||
tellcore_constants.TELLSTICK_HUMIDITY: DatatypeDescription(
|
||||
"humidity", UNIT_PERCENTAGE
|
||||
),
|
||||
tellcore_constants.TELLSTICK_RAINRATE: DatatypeDescription("rain rate", ""),
|
||||
tellcore_constants.TELLSTICK_RAINTOTAL: DatatypeDescription("rain total", ""),
|
||||
tellcore_constants.TELLSTICK_WINDDIRECTION: DatatypeDescription(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue