mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-12-13 08:54:55 +01:00
31 lines
764 B
Python
31 lines
764 B
Python
import asyncio
|
|
|
|
from cbpi.api import *
|
|
|
|
@parameters([Property.Number(label="Param1", configurable=True),
|
|
Property.Text(label="Param2", configurable=True, default_value="HALLO"),
|
|
Property.Select(label="Param3", options=[1,2,4]),
|
|
Property.Sensor(label="Param4"),
|
|
Property.Actor(label="Param5")])
|
|
class CustomLogic(CBPiKettleLogic):
|
|
|
|
pass
|
|
|
|
@action(key="test", parameters=[])
|
|
async def action1(self, **kwargs):
|
|
print("ACTION")
|
|
|
|
|
|
|
|
|
|
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("CustomKettleLogic", CustomLogic)
|