diff --git a/pywink/__init__.py b/pywink/__init__.py index 79840e4..bd530f5 100644 --- a/pywink/__init__.py +++ b/pywink/__init__.py @@ -567,6 +567,9 @@ def state(self): return self._last_reading.get('temperature', False) + def current_temperature(self): + return self._last_reading.get('temperature', False) + def deviceId(self): return self.jsonState.get('thermostat_id', self.name())