craftbeerpi4-pione/core/extension/dummystep/__init__.py
2018-12-16 21:42:47 +01:00

38 lines
845 B
Python

import asyncio
from core.api import Property, action
from core.api.step import CBPiSimpleStep
class CustomStepCBPi(CBPiSimpleStep):
name = Property.Number(label="Test")
i = 0
@action(key="name", parameters=None)
def test(self, **kwargs):
self.name="WOOHOO"
async def run_cycle(self):
#await asyncio.sleep(1)
self.i = self.i + 1
self.name="HALLO WELT"
if self.i == 20:
self.next()
self.cbpi.notify(key="step", message="HELLO FROM STEP")
print("RUN STEP", self.id, self.name, self.__dict__)
def setup(cbpi):
'''
This method is called by the server during startup
Here you need to register your plugins at the server
:param cbpi: the cbpi core
:return:
'''
cbpi.plugin.register("CustomStepCBPi", CustomStepCBPi)