Stap 24: RXTX: begin
#Threads OpenCV stuff. OpenCV = threading.Thread(target=OpenCV) OpenCV.start() #Threads the serial functions. rxtx = threading.Thread(target=rxtx) rxtx.start() #Threads the motor functions. motorTimer = threading.Thread(target=motorTimer) motorTimer.start() |
Tot slot, wij openen onze tweede schroefdraad functie. Deze functie is veel kleiner dan de OpenCV-functie. Hier plaatsvindt alle seriële communicatie.
289: Dit helpt bij het vertalen van ASCII.
292-296: Globale variabelen voor het doorgeven van informatie van de robot naar andere threads.