100 lines
2.9 KiB
Python
100 lines
2.9 KiB
Python
"""Charge and Climate Control Support for the Nissan Leaf."""
|
|
import logging
|
|
|
|
from homeassistant.components.nissan_leaf import (
|
|
DATA_CHARGING, DATA_CLIMATE, DATA_LEAF, LeafEntity)
|
|
from homeassistant.helpers.entity import ToggleEntity
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DEPENDENCIES = ['nissan_leaf']
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Nissan Leaf switch platform setup."""
|
|
_LOGGER.debug(
|
|
"In switch setup platform, discovery_info=%s", discovery_info)
|
|
|
|
devices = []
|
|
for value in hass.data[DATA_LEAF].values():
|
|
devices.append(LeafChargeSwitch(value))
|
|
devices.append(LeafClimateSwitch(value))
|
|
|
|
add_devices(devices, True)
|
|
|
|
|
|
class LeafClimateSwitch(LeafEntity, ToggleEntity):
|
|
"""Nissan Leaf Climate Control switch."""
|
|
|
|
@property
|
|
def name(self):
|
|
"""Switch name."""
|
|
return "{} {}".format(self.car.leaf.nickname, "Climate Control")
|
|
|
|
def log_registration(self):
|
|
"""Log registration."""
|
|
_LOGGER.debug(
|
|
"Registered LeafClimateSwitch component with HASS for VIN %s",
|
|
self.car.leaf.vin)
|
|
|
|
@property
|
|
def device_state_attributes(self):
|
|
"""Return climate control attributes."""
|
|
attrs = super(LeafClimateSwitch, self).device_state_attributes
|
|
attrs["updated_on"] = self.car.last_climate_response
|
|
return attrs
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if climate control is on."""
|
|
return self.car.data[DATA_CLIMATE]
|
|
|
|
async def async_turn_on(self, **kwargs):
|
|
"""Turn on climate control."""
|
|
if await self.car.async_set_climate(True):
|
|
self.car.data[DATA_CLIMATE] = True
|
|
|
|
async def async_turn_off(self, **kwargs):
|
|
"""Turn off climate control."""
|
|
if await self.car.async_set_climate(False):
|
|
self.car.data[DATA_CLIMATE] = False
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Climate control icon."""
|
|
if self.car.data[DATA_CLIMATE]:
|
|
return 'mdi:fan'
|
|
return 'mdi:fan-off'
|
|
|
|
|
|
class LeafChargeSwitch(LeafEntity, ToggleEntity):
|
|
"""Nissan Leaf Charging On switch."""
|
|
|
|
@property
|
|
def name(self):
|
|
"""Switch name."""
|
|
return "{} {}".format(self.car.leaf.nickname, "Charging Status")
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Charging switch icon."""
|
|
if self.car.data[DATA_CHARGING]:
|
|
return 'mdi:flash'
|
|
return 'mdi:flash-off'
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if charging."""
|
|
return self.car.data[DATA_CHARGING]
|
|
|
|
async def async_turn_on(self, **kwargs):
|
|
"""Start car charging."""
|
|
if await self.car.async_start_charging():
|
|
self.car.data[DATA_CHARGING] = True
|
|
|
|
def turn_off(self, **kwargs):
|
|
"""Nissan API doesn't allow stopping of charge remotely."""
|
|
_LOGGER.info(
|
|
"Cannot turn off Leaf charging."
|
|
" Nissan API does not support stopping charge remotely")
|