forked from IRL-CT/Interactive-Lab-Hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqwiic_joystick.py
56 lines (40 loc) · 1.34 KB
/
qwiic_joystick.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
import smbus, time
bus = smbus.SMBus(1)
addr = 0x20
def main():
global bus_data, X, Y
while True:
qwiicjoystick()
def qwiicjoystick():
global bus_data, X, Y
try:
bus_data = bus.read_i2c_block_data(addr, 0x03, 5)
#X_MSB = bus.read_byte_data(addr, 0x03) # Reads MSB for horizontal joystick position
#X_LSB = bus.read_byte_data(addr, 0x04) # Reads LSB for horizontal joystick position
#Y_MSB = bus.read_byte_data(addr, 0x05) # Reads MSB for vertical joystick position
#Y_LSB = bus.read_byte_data(addr, 0x06) # Reads LSB for vertical joystick position
#Select_Button = bus.read_byte_data(addr, 0x07) # Reads button position
except Exception as e:
print(e)
X = (bus_data[0]<<8 | bus_data[1])>>6
Y = (bus_data[2]<<8 | bus_data[3])>>6
#print(X_MSB, Y_MSB)
time.sleep(.5)
if bus_data[4] not in [0, 1]: # bad data reading for this one?, ignore and continue
return
print(X, Y, " Button = ", bus_data[4])
direction = None
#time.sleep(1)
if X < 450:
direction = "RIGHT"
elif 575 < X:
direction = "LEFT"
if Y< 450:
direction = "DOWN"
elif 575 < Y:
direction = "UP"
print(direction)
#if Select_Button == 1:
#terminate()
if __name__ == '__main__':
main()