forked from pvx/litsimaja
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
343 B
17 lines
343 B
from pyleds.lib.Litsimaja import Litsimaja |
|
from pyleds.lib.LoopSwitch import LoopSwitch |
|
|
|
|
|
class Program: |
|
_lm: Litsimaja |
|
_loop: LoopSwitch |
|
|
|
def __init__(self, lm: Litsimaja): |
|
self._lm = lm |
|
self._loop = LoopSwitch() |
|
|
|
def get_loop(self): |
|
return self._loop |
|
|
|
def run(self, args: [] = None): |
|
pass
|
|
|