Source code for platypush.message.event.wiimote

from platypush.message.event import Event


[docs]class WiimoteEvent(Event): """ Event triggered upon Wiimote event """
[docs] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)
[docs]class WiimoteConnectionEvent(WiimoteEvent): """ Event triggered upon Wiimote connection """
[docs] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)
[docs]class WiimoteDisconnectionEvent(WiimoteEvent): """ Event triggered upon Wiimote disconnection """
[docs] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)
# vim:sw=4:ts=4:et: