blob: 6de0bb38254cae5d02bdbd10e6ca90bd8f8a7b47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/usr/bin/python
# This is a simple example showing how you can send a key press event
# to XBMC using the XBMCClient class
import sys
sys.path.append("../../lib/python")
import time
from xbmcclient import XBMCClient,ACTION_EXECBUILTIN,ACTION_BUTTON
def main():
host = "localhost"
port = 9777
# Create an XBMCClient object and connect
xbmc = XBMCClient("Example Remote", "../../icons/bluetooth.png")
xbmc.connect()
# send a up key press using the xbox gamepad map "XG" and button
# name "dpadup" ( see PacketBUTTON doc for more details)
try:
xbmc.send_action(sys.argv[2], ACTION_BUTTON)
except:
try:
xbmc.send_action(sys.argv[1], ACTION_EXECBUILTIN)
except Exception as e:
print(str(e))
xbmc.send_action("ActivateWindow(ShutdownMenu)")
# ok we're done, close the connection
# Note that closing the connection clears any repeat key that is
# active. So in this example, the actual release button event above
# need not have been sent.
xbmc.close()
if __name__=="__main__":
main()
|