forked from platypush/platypush
Removed wiimote
events associated to removed wiimote
plugin.
This commit is contained in:
parent
ad4d929c28
commit
55e230c361
3 changed files with 0 additions and 39 deletions
|
@ -74,7 +74,6 @@ Events
|
||||||
platypush/events/web.rst
|
platypush/events/web.rst
|
||||||
platypush/events/web.widget.rst
|
platypush/events/web.widget.rst
|
||||||
platypush/events/websocket.rst
|
platypush/events/websocket.rst
|
||||||
platypush/events/wiimote.rst
|
|
||||||
platypush/events/xmpp.rst
|
platypush/events/xmpp.rst
|
||||||
platypush/events/zeroborg.rst
|
platypush/events/zeroborg.rst
|
||||||
platypush/events/zeroconf.rst
|
platypush/events/zeroconf.rst
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
``wiimote``
|
|
||||||
===================================
|
|
||||||
|
|
||||||
.. automodule:: platypush.message.event.wiimote
|
|
||||||
:members:
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
from platypush.message.event import Event
|
|
||||||
|
|
||||||
|
|
||||||
class WiimoteEvent(Event):
|
|
||||||
"""
|
|
||||||
Event triggered upon Wiimote event
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
|
||||||
super().__init__(*args, **kwargs)
|
|
||||||
|
|
||||||
|
|
||||||
class WiimoteConnectionEvent(WiimoteEvent):
|
|
||||||
"""
|
|
||||||
Event triggered upon Wiimote connection
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
|
||||||
super().__init__(*args, **kwargs)
|
|
||||||
|
|
||||||
|
|
||||||
class WiimoteDisconnectionEvent(WiimoteEvent):
|
|
||||||
"""
|
|
||||||
Event triggered upon Wiimote disconnection
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
|
||||||
super().__init__(*args, **kwargs)
|
|
||||||
|
|
||||||
|
|
||||||
# vim:sw=4:ts=4:et:
|
|
||||||
|
|
Loading…
Reference in a new issue