mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 09:17:48 +01:00
25 lines
468 B
Python
25 lines
468 B
Python
import asyncio
|
|
|
|
from core.api.step import Step
|
|
|
|
|
|
class CustomStep(Step):
|
|
|
|
async def run(self):
|
|
i = 0
|
|
while i < 3:
|
|
await asyncio.sleep(1)
|
|
print("RUN STEP")
|
|
i = i + 1
|
|
|
|
|
|
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("CustomStep", CustomStep)
|