Update Steam sensor to show currently played game
This commit is contained in:
parent
dc02370b43
commit
a54986159c
1 changed files with 8 additions and 0 deletions
|
@ -49,6 +49,7 @@ class SteamSensor(Entity):
|
||||||
def update(self):
|
def update(self):
|
||||||
"""Update device state."""
|
"""Update device state."""
|
||||||
self._profile = self._steamod.user.profile(self._account)
|
self._profile = self._steamod.user.profile(self._account)
|
||||||
|
self._game = self._profile.current_game[2]
|
||||||
self._state = {
|
self._state = {
|
||||||
1: 'Online',
|
1: 'Online',
|
||||||
2: 'Busy',
|
2: 'Busy',
|
||||||
|
@ -58,6 +59,13 @@ class SteamSensor(Entity):
|
||||||
6: 'Play',
|
6: 'Play',
|
||||||
}.get(self._profile.status, 'Offline')
|
}.get(self._profile.status, 'Offline')
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_state_attributes(self):
|
||||||
|
"""Returns the state attributes."""
|
||||||
|
if self._game == None:
|
||||||
|
self._game = 'None'
|
||||||
|
return {'Game': self._game}
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def entity_picture(self):
|
def entity_picture(self):
|
||||||
"""Avatar of the account."""
|
"""Avatar of the account."""
|
||||||
|
|
Loading…
Add table
Reference in a new issue