* Upgrade pylint to 1.8.1 * Fix no-else-return * Fix bad-whitespace * Fix too-many-nested-blocks * Fix raising-format-tuple See https://github.com/PyCQA/pylint/blob/master/doc/whatsnew/1.8.rst * Fix len-as-condition * Fix logging-not-lazy Not sure about that TEMP_CELSIUS though, but internally it's probably just like if you concatenated any other (variable) string * Fix stop-iteration-return * Fix useless-super-delegation * Fix trailing-comma-tuple Both of these seem to simply be bugs: * Nest: The value of self._humidity never seems to be used anywhere * Dovado: The called API method seems to expect a "normal" number * Fix redefined-argument-from-local * Fix consider-using-enumerate * Fix wrong-import-order * Fix arguments-differ * Fix missed no-else-return * Fix no-member and related * Fix signatures-differ * Revert "Upgrade pylint to 1.8.1" This reverts commit af78aa00f125a7d34add97b9d50c14db48412211. * Fix arguments-differ * except for device_tracker * Cleanup * Fix test using positional argument * Fix line too long I forgot to run flake8 - shame on me... 🙃 * Fix bad-option-value for 1.6.5 * Fix arguments-differ for device_tracker * Upgrade pylint to 1.8.2 * 👕 Fix missed no-member
96 lines
2.9 KiB
Python
96 lines
2.9 KiB
Python
"""
|
|
Demo fan platform that has a fake fan.
|
|
|
|
For more details about this platform, please refer to the documentation
|
|
https://home-assistant.io/components/demo/
|
|
"""
|
|
from homeassistant.components.fan import (SPEED_LOW, SPEED_MEDIUM, SPEED_HIGH,
|
|
FanEntity, SUPPORT_SET_SPEED,
|
|
SUPPORT_OSCILLATE, SUPPORT_DIRECTION)
|
|
from homeassistant.const import STATE_OFF
|
|
|
|
FULL_SUPPORT = SUPPORT_SET_SPEED | SUPPORT_OSCILLATE | SUPPORT_DIRECTION
|
|
LIMITED_SUPPORT = SUPPORT_SET_SPEED
|
|
|
|
|
|
# pylint: disable=unused-argument
|
|
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
|
"""Set up the demo fan platform."""
|
|
add_devices_callback([
|
|
DemoFan(hass, "Living Room Fan", FULL_SUPPORT),
|
|
DemoFan(hass, "Ceiling Fan", LIMITED_SUPPORT),
|
|
])
|
|
|
|
|
|
class DemoFan(FanEntity):
|
|
"""A demonstration fan component."""
|
|
|
|
def __init__(self, hass, name: str, supported_features: int) -> None:
|
|
"""Initialize the entity."""
|
|
self.hass = hass
|
|
self._supported_features = supported_features
|
|
self._speed = STATE_OFF
|
|
self.oscillating = None
|
|
self.direction = None
|
|
self._name = name
|
|
|
|
if supported_features & SUPPORT_OSCILLATE:
|
|
self.oscillating = False
|
|
if supported_features & SUPPORT_DIRECTION:
|
|
self.direction = "forward"
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Get entity name."""
|
|
return self._name
|
|
|
|
@property
|
|
def should_poll(self):
|
|
"""No polling needed for a demo fan."""
|
|
return False
|
|
|
|
@property
|
|
def speed(self) -> str:
|
|
"""Return the current speed."""
|
|
return self._speed
|
|
|
|
@property
|
|
def speed_list(self) -> list:
|
|
"""Get the list of available speeds."""
|
|
return [STATE_OFF, SPEED_LOW, SPEED_MEDIUM, SPEED_HIGH]
|
|
|
|
def turn_on(self, speed: str = None, **kwargs) -> None:
|
|
"""Turn on the entity."""
|
|
if speed is None:
|
|
speed = SPEED_MEDIUM
|
|
self.set_speed(speed)
|
|
|
|
def turn_off(self, **kwargs) -> None:
|
|
"""Turn off the entity."""
|
|
self.oscillate(False)
|
|
self.set_speed(STATE_OFF)
|
|
|
|
def set_speed(self, speed: str) -> None:
|
|
"""Set the speed of the fan."""
|
|
self._speed = speed
|
|
self.schedule_update_ha_state()
|
|
|
|
def set_direction(self, direction: str) -> None:
|
|
"""Set the direction of the fan."""
|
|
self.direction = direction
|
|
self.schedule_update_ha_state()
|
|
|
|
def oscillate(self, oscillating: bool) -> None:
|
|
"""Set oscillation."""
|
|
self.oscillating = oscillating
|
|
self.schedule_update_ha_state()
|
|
|
|
@property
|
|
def current_direction(self) -> str:
|
|
"""Fan direction."""
|
|
return self.direction
|
|
|
|
@property
|
|
def supported_features(self) -> int:
|
|
"""Flag supported features."""
|
|
return self._supported_features
|