Made inactivity timeout on Wiimote configurable

This commit is contained in:
Fabio Manganiello 2018-12-01 19:38:43 +01:00
parent 199e9fdba1
commit f677c79f54
1 changed files with 10 additions and 0 deletions

View File

@ -34,6 +34,16 @@ class WiimoteBackend(Backend):
_last_btn_event_time = 0
def __init__(self, inactivity_timeout=_inactivity_timeout, *args, **kwargs):
"""
:param inactivity_timeout: Number of seconds elapsed from the last Wiimote action before disconnecting the device (default: 300 seconds)
:type inactivity_timeout: float
"""
super().__init__(*args, **kwargs)
self._inactivity_timeout = inactivity_timeout
def get_wiimote(self):
if not self._wiimote:
self._wiimote = cwiid.Wiimote()