mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 09:17:48 +01:00
44 lines
1,004 B
Python
44 lines
1,004 B
Python
import asyncio
|
|
import time
|
|
|
|
from cbpi.api import *
|
|
|
|
|
|
class CustomStepCBPi(CBPiSimpleStep):
|
|
|
|
name1 = Property.Number(label="Test", configurable=True)
|
|
timer_end = Property.Number(label="Test", default_value=None)
|
|
temp = Property.Number(label="Temperature", default_value=50, configurable=True)
|
|
i = 0
|
|
|
|
@action(key="name", parameters=None)
|
|
def test(self, **kwargs):
|
|
self.name="WOOHOO"
|
|
|
|
|
|
|
|
async def run_cycle(self):
|
|
print("RUN", self.name1, self.managed_fields, self.timer_end)
|
|
self.i = self.i + 1
|
|
|
|
if self.timer_end is None:
|
|
self.timer_end = time.time() + 10
|
|
|
|
if self.i == 10:
|
|
self.next()
|
|
|
|
|
|
#self.cbpi.notify(key="step", message="HELLO FROM STEP")
|
|
|
|
|
|
|
|
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)
|