-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
42 lines (33 loc) · 1.98 KB
/
main.py
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
41
42
"""(c) Jonathan Shulgach - Cite and Notice license:
All modifications to this code or use of it must include this notice and give credit for use.
Credit requirements:
All publications using this code must cite all contributors to this code. A list must be updated below indicating the
contributors alongside the original or modified code appropriately. All code built on this code must retain this
notice. All projects incorporating this code must retain this license text alongside the original or modified code.
All projects incorporating this code must retain the existing citation and license text in each code file and modify
it to include all contributors. Web, video, or other presentation materials must give credit for the contributors to
this code, if it contributes to the subject presented. All modifications to this code or other associated
documentation must retain this notice or a modified version which may only involve updating the contributor list.
Primary Authors:
- Jonathan Shulgach, PhD Student - Neuromechatronics Lab, Carnegie Mellon University
Corresponding copyright notices:
Other than the above, this code may be used for any purpose and no financial or other compensation is required.
Contributors do not relinquish their copyright(s) to this software by virtue of offering this license.
Any modifications to the license require permission of the authors.
Description:
This Python code serves as a xbox controller client for either serial or network control of the Mini-Arm robot
"""
from xbox_client import XboxClient
__version__ = "1.0.1"
if __name__ == '__main__':
# Specify the ip address to connect to
ip = '192.168.1.165'
client = XboxClient(ip=ip, serialport='COM5', rate=10, simulate=False, online=False, use_serial=True, verbose=False)
try:
client.start()
while True:
pass
except KeyboardInterrupt:
print("Oh! you pressed CTRL + C. Program interrupted...")
finally:
client.stop()