mirror of
https://github.com/brendanhaines/ECEN5458_Project.git
synced 2024-12-26 10:57:55 -07:00
Fix name mismatch
This commit is contained in:
parent
6e68b881b5
commit
0fa738e326
|
@ -160,14 +160,14 @@ def cal_black(attrname=None, old=None, new=None):
|
||||||
update_plots()
|
update_plots()
|
||||||
|
|
||||||
def start_controller(attrname=None, old=None, new=None):
|
def start_controller(attrname=None, old=None, new=None):
|
||||||
global controller_thread
|
global control_thread
|
||||||
controller_thread_run = True
|
control_thread_run = True
|
||||||
controller_thread.start()
|
control_thread.start()
|
||||||
|
|
||||||
def stop_controller(attrname=None, old=None, new=None):
|
def stop_controller(attrname=None, old=None, new=None):
|
||||||
global controller_thread
|
global control_thread
|
||||||
controller_thread_run = False
|
control_thread_run = False
|
||||||
controller_thread.join()
|
control_thread.join()
|
||||||
|
|
||||||
# GUI elements
|
# GUI elements
|
||||||
cal_white_button = Button(label="Cal White")
|
cal_white_button = Button(label="Cal White")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user