commit
6149e509c3
1 changed files with 9 additions and 0 deletions
|
@ -59,6 +59,15 @@ class TimeDateSensor(Entity):
|
||||||
""" Returns the state of the device. """
|
""" Returns the state of the device. """
|
||||||
return self._state
|
return self._state
|
||||||
|
|
||||||
|
@property
|
||||||
|
def icon(self):
|
||||||
|
if "date" in self.type and "time" in self.type:
|
||||||
|
return "mdi:calendar-clock"
|
||||||
|
elif "date" in self.type:
|
||||||
|
return "mdi:calendar"
|
||||||
|
else:
|
||||||
|
return "mdi:clock"
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
""" Gets the latest data and updates the states. """
|
""" Gets the latest data and updates the states. """
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue