Skip to content

Commit 60afb10

Browse files
Add COCCON Spain Enclosure code frame (7)
Add coccon spain thread to mainloop
1 parent 8b04722 commit 60afb10

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

packages/core/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def run() -> None:
8282
threads.OpusThread(logs_lock),
8383
threads.SystemMonitorThread(logs_lock),
8484
threads.TUMEnclosureThread(logs_lock),
85+
threads.COCCONSpainEnclosureThread(logs_lock),
8586
threads.UploadThread(logs_lock),
8687
]
8788

packages/core/threads/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
TUMEnclosureThread as TUMEnclosureThread,
1111
)
1212
from .enclosures.coccon_spain_enclosure_thread import (
13-
CocconSpainEnclosureThread as CocconSpainEnclosureThread,
13+
COCCONSpainEnclosureThread as COCCONSpainEnclosureThread,
1414
)

packages/core/threads/enclosures/coccon_spain_enclosure_thread.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88

99

1010
class COCCONSpainEnclosureThread(AbstractThread):
11-
"""Thread for to evaluate whether to conduct measurements or not.
12-
13-
CAS = Condition Assessment System."""
11+
"""Thread interacting with the COCCON Spain Enclosure"""
1412

1513
logger_origin = "coccon-spain-enclosure-thread"
1614

packages/core/threads/enclosures/tum_enclosure_thread.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99

1010

1111
class TUMEnclosureThread(AbstractThread):
12-
"""Thread for to evaluate whether to conduct measurements or not.
13-
14-
CAS = Condition Assessment System."""
12+
"""Thread interacting with the TUM Enclosure"""
1513

1614
logger_origin = "tum-enclosure-thread"
1715

0 commit comments

Comments
 (0)