pndBase.py aktualisiert

This commit is contained in:
2025-10-30 01:45:38 +00:00
parent 536f746d36
commit add183eff8

View File

@@ -17,4 +17,10 @@ ServiceRuntime.init(0) # the passed 0 as integer is internaly used as "lastTry"
# the following methods
# run() <this is the Main method wich has the defined Loop
# aswell as selfhealing exception handling
# BackgroundTask() <ToDo
# BackgroundTask() < this method is meant as it's Name suggest: do Background Work
import Threads
secondThread = Threads.Run(ServiceRuntime.BackgroundTask, ())
ServiceRuntime.run()