diff --git a/homeassistant/components/cover/vera.py b/homeassistant/components/cover/vera.py index 48abe373eac..033cea4a828 100644 --- a/homeassistant/components/cover/vera.py +++ b/homeassistant/components/cover/vera.py @@ -47,6 +47,7 @@ class VeraCover(VeraDevice, CoverDevice): def set_cover_position(self, position, **kwargs): """Move the cover to a specific position.""" self.vera_device.set_level(position) + self.schedule_update_ha_state() @property def is_closed(self): @@ -60,11 +61,14 @@ class VeraCover(VeraDevice, CoverDevice): def open_cover(self, **kwargs): """Open the cover.""" self.vera_device.open() + self.schedule_update_ha_state() def close_cover(self, **kwargs): """Close the cover.""" self.vera_device.close() + self.schedule_update_ha_state() def stop_cover(self, **kwargs): """Stop the cover.""" self.vera_device.stop() + self.schedule_update_ha_state() diff --git a/homeassistant/components/vera.py b/homeassistant/components/vera.py index 4d14db5b7d7..555a800708c 100644 --- a/homeassistant/components/vera.py +++ b/homeassistant/components/vera.py @@ -20,7 +20,7 @@ from homeassistant.const import ( EVENT_HOMEASSISTANT_STOP) from homeassistant.helpers.entity import Entity -REQUIREMENTS = ['pyvera==0.2.24'] +REQUIREMENTS = ['pyvera==0.2.25'] _LOGGER = logging.getLogger(__name__) diff --git a/requirements_all.txt b/requirements_all.txt index 5cac1151302..efe8db79624 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -648,7 +648,7 @@ pyunifi==2.0 # pyuserinput==0.1.11 # homeassistant.components.vera -pyvera==0.2.24 +pyvera==0.2.25 # homeassistant.components.notify.html5 pywebpush==0.6.1