Skip to content
Snippets Groups Projects
Commit a32229b4 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

Allow decimal numbers (Thanks @luxus)

parent 7da104af
No related branches found
No related tags found
No related merge requests found
......@@ -108,12 +108,15 @@ class CommandSensor(Entity):
self.data.update()
value = self.data.value
if value is not None:
if self._corr_factor is not None:
self._state = round((int(value) * self._corr_factor),
self._decimal_places)
else:
self._state = value
try:
if value is not None:
if self._corr_factor is not None:
self._state = round((float(value) * self._corr_factor),
self._decimal_places)
else:
self._state = value
except ValueError:
self._state = value
# pylint: disable=too-few-public-methods
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment