-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGroundStation.py
140 lines (120 loc) · 5.24 KB
/
GroundStation.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
from inputs import get_gamepad
import math
import threading
import struct
import serial
import time
import sys
class XboxController(object):
MAX_TRIG_VAL = math.pow(2, 8)
MAX_JOY_VAL = math.pow(2, 15)
def __init__(self):
self.LeftJoystickY = 0
self.LeftJoystickX = 0
self.RightJoystickY = 0
self.RightJoystickX = 0
self.LeftTrigger = 0
self.RightTrigger = 0
self.LeftBumper = 0
self.RightBumper = 0
self.A = 0
self.X = 0
self.Y = 0
self.B = 0
self.LeftThumb = 0
self.RightThumb = 0
self.Back = 0
self.Start = 0
self.LeftDPad = 0
self.RightDPad = 0
self.UpDPad = 0
self.DownDPad = 0
self._monitor_thread = threading.Thread(target=self._monitor_controller, args=())
self._monitor_thread.daemon = True
self._monitor_thread.start()
self.uart_packet = None
def read(self): # return the buttons/triggers that you care about in this methode
x = self.LeftJoystickY
y = self.RightJoystickX
a = self.A
b = self.X # b=1, x=2
rb = self.RightBumper
device_id = 1
start_bit = 1 << 7
#data struct (start_bit + device id, message type, payload, crc, pad[optional])
#message type: 1 handshake 1 byte for payload; 2 heart beat message; 3joystick input; 4 button action
self.uart_packet = struct.pack('@BBbb', start_bit | device_id, 0b00000011, int(self.LeftJoystickY/2), int(self.RightJoystickX/2))
def write_uart(self):
print(self.uart_packet)
ser.write(self.uart_packet) # write a string
def _monitor_controller(self):
while True:
events = get_gamepad()
for event in events:
if event.code == 'ABS_Y':
self.LeftJoystickY = int(event.state / XboxController.MAX_JOY_VAL * 100) # normalize between -1 and 1
if abs(self.LeftJoystickY) <= 20:
self.LeftJoystickY = 0
elif event.code == 'ABS_X':
self.LeftJoystickX = int(event.state / XboxController.MAX_JOY_VAL * 100) # normalize between -1 and 1
if abs(self.LeftJoystickX) <= 20:
self.LeftJoystickX = 0
elif event.code == 'ABS_RY':
self.RightJoystickY = int(event.state / XboxController.MAX_JOY_VAL * 100) # normalize between -1 and 1
if abs(self.RightJoystickY) <= 20:
self.RightJoystickY = 0
elif event.code == 'ABS_RX':
self.RightJoystickX = int(event.state / XboxController.MAX_JOY_VAL * 100) # normalize between -1 and 1
if abs(self.RightJoystickX) <= 20:
self.RightJoystickX = 0
elif event.code == 'ABS_Z':
self.LeftTrigger = event.state / XboxController.MAX_TRIG_VAL # normalize between 0 and 1
elif event.code == 'ABS_RZ':
self.RightTrigger = event.state / XboxController.MAX_TRIG_VAL # normalize between 0 and 1
elif event.code == 'BTN_TL':
self.LeftBumper = event.state
elif event.code == 'BTN_TR':
self.RightBumper = event.state
elif event.code == 'BTN_SOUTH':
self.A = event.state
elif event.code == 'BTN_NORTH':
self.Y = event.state #previously switched with X
elif event.code == 'BTN_WEST':
self.X = event.state #previously switched with Y
elif event.code == 'BTN_EAST':
self.B = event.state
elif event.code == 'BTN_THUMBL':
self.LeftThumb = event.state
elif event.code == 'BTN_THUMBR':
self.RightThumb = event.state
elif event.code == 'BTN_SELECT':
self.Back = event.state
elif event.code == 'BTN_START':
self.Start = event.state
elif event.code == 'BTN_TRIGGER_HAPPY1':
self.LeftDPad = event.state
elif event.code == 'BTN_TRIGGER_HAPPY2':
self.RightDPad = event.state
elif event.code == 'BTN_TRIGGER_HAPPY3':
self.UpDPad = event.state
elif event.code == 'BTN_TRIGGER_HAPPY4':
self.DownDPad = event.state
def handshake():
while(True):
ser.write(struct.pack('@B', 0x01))
ack_data = ser.read(1)
# print(ack_data)
if ack_data == b'\x81':
break
print("Handshake Complete")
if __name__ == '__main__':
#TODO: implment handshake logic
#TODO: implement dynamic output (only when value change)
#TODO: setup on UWRT computer
ser = serial.Serial('/dev/ttyUSB0', 57600) # open serial port
joy = XboxController()
handshake()
while True:
joy.read()
joy.write_uart()
print(struct.unpack("@bb", ser.read(2)))