Move YAML config to component

This commit is contained in:
Pierre Ståhl
2020-09-24 22:06:00 +02:00
committed by rospogrigio
parent 450060488b
commit 0048ce6d5e
8 changed files with 42 additions and 132 deletions

View File

@@ -19,7 +19,6 @@ import logging
from homeassistant.components.fan import (
FanEntity,
DOMAIN,
PLATFORM_SCHEMA,
SPEED_OFF,
SPEED_LOW,
SPEED_MEDIUM,
@@ -29,16 +28,10 @@ from homeassistant.components.fan import (
)
from homeassistant.const import CONF_ID, CONF_FRIENDLY_NAME
from . import (
BASE_PLATFORM_SCHEMA,
import_from_yaml,
)
from .common import LocalTuyaEntity, TuyaDevice, prepare_setup_entities
_LOGGER = logging.getLogger(__name__)
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(BASE_PLATFORM_SCHEMA)
def flow_schema(dps):
"""Return schema used in config flow."""
@@ -65,11 +58,6 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
async_add_entities(fans, True)
def setup_platform(hass, config, add_devices, discovery_info=None):
"""Set up of the Tuya fan."""
return import_from_yaml(hass, config, DOMAIN)
class LocaltuyaFan(LocalTuyaEntity, FanEntity):
"""Representation of a Tuya fan."""