Projekt Litsimaja - Lapikute tagatoa seintele programmeeritavad ARGB ribad
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.
|
class LoopSwitch(object): |
|
_run: bool |
|
|
|
def __init__(self): |
|
self._run = True |
|
|
|
def stop(self): |
|
self._run = False |
|
|
|
def status(self) -> bool: |
|
return self._run
|
|
|