-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
40 lines (20 loc) · 661 Bytes
/
main.py
File metadata and controls
40 lines (20 loc) · 661 Bytes
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
from src.Libs.gui import App, visualization
from src.Libs.tools.paths import SETTINGS_PATH
from src.Libs.transmition import Tx_Thread
import pygame
from sys import platform
import os
from threading import Thread
from queue import Queue
from collections import deque
import time
pygame.init()
tx = Tx_Thread()
app=App(SETTINGS_PATH)
controllerData = []
if __name__ == '__main__':
app.start()
tx.start()
while True:
"maybe at a later state the visualization"
pass