mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-12 18:27:47 +01:00
28 lines
No EOL
631 B
Python
28 lines
No EOL
631 B
Python
from core.api.decorator import on_event
|
|
from core.api.extension import CBPiExtension
|
|
|
|
class MyComp(CBPiExtension):
|
|
|
|
def __init__(self, cbpi):
|
|
'''
|
|
Initializer
|
|
|
|
:param cbpi:
|
|
'''
|
|
self.cbpi = cbpi
|
|
# register for bus events
|
|
self.cbpi.register_events(self)
|
|
|
|
@on_event(topic="actor/#")
|
|
def listen(self, **kwargs):
|
|
print("Test", kwargs)
|
|
|
|
def setup(cbpi):
|
|
'''
|
|
Setup method is invoked during startup
|
|
|
|
:param cbpi: the cbpi core object
|
|
:return:
|
|
'''
|
|
# regsiter the component to the core
|
|
cbpi.plugin.register("MyComp", MyComp) |