Skip to content

Commit bc5e1e7

Browse files
authored
Merge pull request #28 from voradortc/master
Update for 2022.7
2 parents 1f79bf5 + 7309ce6 commit bc5e1e7

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

custom_components/sensorpush/__init__.py

+11-8
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,17 @@ def refresh_sensorpush_data(event_time):
9191
#hass.data[SENSORPUSH_SERVICE].update(update_devices=True)
9292

9393
# retrieve the latest samples from the SensorPush cloud service
94-
latest_samples = hass.data[SENSORPUSH_SERVICE].samples()
95-
if latest_samples:
96-
hass.data[SENSORPUSH_SAMPLES] = latest_samples
97-
98-
# notify all listeners (sensor entities) that they may have new data
99-
dispatcher_send(hass, SIGNAL_SENSORPUSH_UPDATED)
100-
else:
101-
LOG.warn("Unable to fetch latest samples from SensorPush cloud")
94+
try:
95+
latest_samples = hass.data[SENSORPUSH_SERVICE].samples()
96+
if latest_samples:
97+
hass.data[SENSORPUSH_SAMPLES] = latest_samples
98+
99+
# notify all listeners (sensor entities) that they may have new data
100+
dispatcher_send(hass, SIGNAL_SENSORPUSH_UPDATED)
101+
else:
102+
LOG.warn("Unable to fetch latest samples from SensorPush cloud")
103+
except Exception as ex:
104+
LOG.warn(f"Unable to fetch latest samples from SensorPush cloud. Error: {ex}")
102105

103106
# subscribe for notifications that an update should be triggered
104107
hass.services.register(SENSORPUSH_DOMAIN, 'update', refresh_sensorpush_data)

custom_components/sensorpush/sensor.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import voluptuous as vol
1010
from homeassistant.helpers import config_validation as cv
1111
from homeassistant.components.sensor import PLATFORM_SCHEMA
12+
from homeassistant.components.sensor import SensorEntity
1213

1314
from . import ( SensorPushEntity, SENSORPUSH_SERVICE, SENSORPUSH_SAMPLES)
1415

@@ -50,7 +51,7 @@ def setup_platform(hass, config, add_entities_callback, discovery_info=None):
5051
add_entities_callback(hass_sensors, True)
5152

5253
# pylint: disable=too-many-instance-attributes
53-
class SensorPushMeasurement(SensorPushEntity):
54+
class SensorPushMeasurement(SensorPushEntity, SensorEntity):
5455
"""Measurement sensor for a SensorPush device"""
5556
def __init__(self, hass, config, sensor_info, unit_system, measure):
5657
self._name = MEASURES[measure]['name']

0 commit comments

Comments
 (0)