-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlauncher.py
391 lines (327 loc) · 12.8 KB
/
launcher.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
#!/usr/bin/env python
import os
import sys
import cwiid
import logging
import time
import threading
from wiimote import Wiimote, WiimoteException
import RPi.GPIO as GPIO
import core
import rc
import Calibration
from lib_oled96 import ssd1306
import VL53L0X
# from smbus import SMBus # Commented out as I don't believe its required.
from enum import Enum
from decorators import debounce
try:
from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
logging.basicConfig(stream=sys.stdout, level=logging.INFO)
class Mode(Enum):
# Enum class for robot mode/challenge.
MODE_NONE = 0
MODE_POWER = 1
MODE_RC = 2
MODE_WALL = 3
MODE_MAZE = 4
MODE_CALIBRATION = 5
class launcher:
def __init__(self):
self.reading_calibration = True
# Initialise wiimote, will be created at beginning of loop.
self.wiimote = None
# Instantiate CORE / Chassis module and store in the launcher.
self.core = core.Core(VL53L0X.tof_lib)
GPIO.setwarnings(False)
self.GPIO = GPIO
self.challenge = None
self.challenge_thread = None
# Shutting down status
self.shutting_down = False
self.killed = False
# Mode/Challenge Dictionary
self.menu_list = OrderedDict((
(Mode.MODE_POWER, "Power Off"),
(Mode.MODE_RC, "RC"),
(Mode.MODE_WALL, "Wall"),
(Mode.MODE_MAZE, "Maze"),
(Mode.MODE_CALIBRATION, "Calibration")
))
self.current_mode = Mode.MODE_NONE
self.menu_mode = Mode.MODE_RC
# Create oled object, nominating the correct I2C bus, default address
# Note: Set to None if you need to disable screen
self.oled = ssd1306(VL53L0X.i2cbus)
def stop_threads(self):
""" Single point of call to stop any RC or Challenge Threads """
if self.challenge:
if (self.current_mode == Mode.MODE_CALIBRATION):
# Write the config file when exiting the calibration module.
self.challenge.write_config()
self.challenge.stop()
self.challenge = None
self.challenge_thread = None
logging.info("Stopping Challenge Thread")
else:
logging.info("No Challenge Thread")
# Reset current mode index
self.current_mode = Mode.MODE_NONE
# Safety setting
self.core.enable_motors(False)
# Show state on OLED display
self.show_menu()
def get_mode_name(self, mode):
""" Return appropriate mode name """
mode_name = ""
if mode != Mode.MODE_NONE:
mode_name = self.menu_list[mode]
return mode_name
def get_next_mode(self, mode):
""" Find the previous menu item """
mode_index = self.menu_list.keys().index(mode)
next_index = mode_index + 1
if next_index >= len(self.menu_list):
next_index = 0 # Wrapped round to end
return self.menu_list.keys()[next_index]
def get_previous_mode(self, mode):
""" Find the previous menu item """
mode_index = self.menu_list.keys().index(mode)
previous_index = mode_index - 1
if previous_index < 0:
previous_index = len(self.menu_list) - 1 # Wrapped round to end
return self.menu_list.keys()[previous_index]
def show_message(self, message):
""" Show state on OLED display """
if self.oled is not None:
self.oled.cls() # Clear Screen
self.oled.canvas.text((10, 10), message, fill=1)
# Now show the mesasge on the screen
self.oled.display()
def show_mode(self):
""" Display current menu item. """
if self.oled is not None:
# Clear Screen
self.oled.cls()
# Get current mode name and display it.
mode_name = self.get_mode_name(self.current_mode)
self.oled.canvas.text((10, 10), 'Mode: ' + mode_name, fill=1)
# Now show the mesasge on the screen
self.oled.display()
@debounce(0.25)
def menu_item_pressed(self):
""" Current menu item pressed. Do something """
if self.menu_mode == Mode.MODE_POWER:
self.power_off()
elif self.menu_mode == Mode.MODE_RC:
self.start_rc_mode()
elif self.menu_mode == Mode.MODE_WALL:
logging.info("Wall Mode")
elif self.menu_mode == Mode.MODE_MAZE:
logging.info("Maze Mode")
elif self.menu_mode == Mode.MODE_CALIBRATION:
self.start_calibration_mode()
@debounce(0.25)
def menu_up(self):
self.menu_mode = self.get_previous_mode(self.menu_mode)
self.show_menu()
@debounce(0.25)
def menu_down(self):
self.menu_mode = self.get_next_mode(self.menu_mode)
self.show_menu()
def show_menu(self):
""" Display menu. """
# Display current menu item to prompt for when no OLED attached
mode_name = self.get_mode_name(self.menu_mode)
print(mode_name)
# Clear Screen
if self.oled is not None:
self.oled.cls()
# Get next and previous list items
previous_mode = self.get_previous_mode(self.menu_mode)
next_mode = self.get_next_mode(self.menu_mode)
# Get mode names and display them.
current_mode_name = self.get_mode_name(self.current_mode)
mode_name_up = self.get_mode_name(previous_mode)
mode_name_down = self.get_mode_name(next_mode)
header_y = 0
previous_y = 20
current_y = 30
next_y = 40
# Display Bot name and header information
self.oled.canvas.text(
(10, header_y),
'TITO 2: ' + current_mode_name,
fill=1)
# Line underneath header
self.oled.canvas.line(
(0, 9, self.oled.width - 1, 9),
fill=1)
# Draw rect around current selection.
# NOTE: Has to be done BEFORE text below
self.oled.canvas.rectangle(
(10, current_y, self.oled.width - 1, current_y + 10),
outline=1,
fill=0)
# show current mode as well as one mode either side
self.oled.canvas.text(
(15, previous_y),
'Mode: ' + mode_name_up,
fill=1)
self.oled.canvas.text(
(15, current_y),
'Mode: ' + mode_name,
fill=1)
self.oled.canvas.text(
(15, next_y),
'Mode: ' + mode_name_down,
fill=1)
# 2x triangles indicating menu direction
self.oled.canvas.polygon(
((1, previous_y + 9),
(5, previous_y + 1),
(9, previous_y + 9),
(1, previous_y + 9)),
outline=1,
fill=0)
self.oled.canvas.polygon(
((1, next_y + 1),
(5, next_y + 9),
(9, next_y + 1),
(1, next_y + 1)),
outline=1,
fill=0)
# Now show the mesasge on the screen
self.oled.display()
def read_config(self):
# Read the config file when starting up.
if self.reading_calibration:
calibration = Calibration.Calibration(
self.core,
self.wiimote,
self)
calibration.read_config()
def power_off(self):
""" Power down the pi """
self.stop_threads()
if self.oled is not None:
self.oled.cls() # Clear Screen
self.oled.canvas.text((10, 10), 'Powering off...', fill=1)
# Now show the mesasge on the screen
self.oled.display()
# Call system OS to shut down the Pi
logging.info("Shutting Down Pi")
os.system("sudo shutdown -h now")
def start_rc_mode(self):
# Kill any previous Challenge / RC mode
self.stop_threads()
# Set Wiimote LED to RC Mode index
self.current_mode = Mode.MODE_RC
# Inform user we are about to start RC mode
logging.info("Entering into RC Mode")
self.challenge = rc.rc(self.core, self.wiimote, self.oled)
# Create and start a new thread
# running the remote control script
logging.info("Starting RC Thread")
self.challenge_thread = threading.Thread(
target=self.challenge.run)
self.challenge_thread.start()
logging.info("RC Thread Running")
def start_calibration_mode(self):
# Kill any previous Challenge / RC mode
self.stop_threads()
# Set Wiimote LED to RC Mode index
self.current_mode = Mode.MODE_CALIBRATION
# Inform user we are about to start RC mode
logging.info("Entering into Calibration Mode")
self.challenge = \
Calibration.Calibration(self.core, self.wiimote, self.oled)
# Create and start a new thread
# running the remote control script
logging.info("Starting Calibration Thread")
self.challenge_thread = threading.Thread(
target=self.challenge.run)
self.challenge_thread.start()
logging.info("Calibration Thread Running")
def run(self):
""" Main Running loop controling bot mode and menu state """
# Show state on OLED display
self.show_message('Booting...')
# Read config file FIRST
self.read_config()
self.show_message('Initialising Bluetooth...')
# Never stop looking for wiimote.
while not self.killed:
if self.oled is not None:
# Show state on OLED display
self.oled.cls() # Clear screen
self.oled.canvas.text(
(10, 10),
'Waiting for WiiMote...',
fill=1)
self.oled.canvas.text(
(10, 30),
'***Press 1+2 now ***',
fill=1)
self.oled.display()
self.wiimote = None
try:
self.wiimote = Wiimote()
except WiimoteException:
logging.error("Could not connect to wiimote. please try again")
# Show state on OLED display
self.show_menu()
# Constantly check wiimote for button presses
while self.wiimote:
buttons_state = self.wiimote.get_buttons()
classic_buttons_state = self.wiimote.get_classic_buttons()
if buttons_state is not None:
if (buttons_state & cwiid.BTN_A and
self.challenge is None):
# Only works when NOT in a challenge
self.menu_item_pressed()
self.show_menu()
if (buttons_state & cwiid.BTN_B):
# Kill any previous Challenge / RC mode
# NOTE: will ALWAYS work
self.stop_threads()
if (buttons_state & cwiid.BTN_UP and
self.challenge is None):
# Only works when NOT in a challenge
self.menu_up()
if (buttons_state & cwiid.BTN_DOWN and
self.challenge is None):
# Only works when NOT in a challenge
self.menu_down()
if classic_buttons_state is not None:
if (classic_buttons_state & cwiid.CLASSIC_BTN_ZL or
classic_buttons_state & cwiid.CLASSIC_BTN_ZR):
# One of the Z buttons pressed, disable
# motors and set neutral.
# NOTE: will ALWAYS work
self.core.enable_motors(False)
else:
# Neither Z buttons pressed,
# allow motors to move freely.
# NOTE: will ALWAYS work
self.core.enable_motors(True)
time.sleep(0.05)
# Verify Wiimote is connected each loop. If not, set wiimote
# to None and it "should" attempt to reconnect.
if not self.wiimote.wm:
self.stop_threads()
self.wiimote = None
if __name__ == "__main__":
launcher = launcher()
try:
launcher.run()
except (Exception, KeyboardInterrupt) as e:
# Stop any active threads before leaving
launcher.wiimote = None
launcher.stop_threads() # This will set neutral for us.
print("Stopping")
print(str(e))
# Show state on OLED display
launcher.show_message('Exited Python Code')