Files
esp-base/pg26/main.py
pndadm bd19860ae7 Dateien nach "pg26" hochladen
work in progress implementation of new framework
2025-10-30 00:20:18 +00:00

17 lines
252 B
Python

import pnd
import _thread
import time
print(pnd.cfg.tasks.gc_tasks)
## init pundo system
runtime = pnd.rt()
runtime.init(0)
## run backgroundtasks
_thread.start_new_thread(runtime.backgroundTask, ())
## run main Task
runtime.run()