craftbeerpi4-pione/core/extension/dummylogic/__init__.py

85 lines
1.9 KiB
Python
Raw Normal View History

2018-11-18 15:40:10 +01:00
import asyncio
2018-11-29 21:59:08 +01:00
from core.api import Property, on_event
2018-11-18 15:40:10 +01:00
from core.api.kettle_logic import CBPiKettleLogic
class CustomLogic(CBPiKettleLogic):
2018-11-18 23:09:17 +01:00
test = Property.Number(label="Test")
2018-11-18 15:40:10 +01:00
running = True
2018-11-29 21:59:08 +01:00
async def wait_for_event(self, topic, timeout=None):
future_obj = self.cbpi.app.loop.create_future()
async def callback(id, **kwargs):
print("---------------------------------- CALLBACK ----------------")
print(kwargs)
if int(id) == 1:
self.cbpi.bus.unregister(callback)
future_obj.set_result("HELLO")
elif int(id) == 2:
self.cbpi.bus.unregister(callback)
else:
print("ID", id)
print("TOPIC", topic)
self.cbpi.bus.register(topic=topic, method=callback)
if timeout is not None:
try:
print("----> WAIT FOR FUTURE")
await asyncio.wait_for(future_obj, timeout=10.0)
print("------> RETURN RESULT")
return future_obj.result()
except asyncio.TimeoutError:
print('timeout!')
else:
print("----> WAIT FOR FUTURE")
await future_obj
return future_obj.result()
2018-11-18 15:40:10 +01:00
async def run(self):
2018-11-29 21:59:08 +01:00
result = await self.wait_for_event("actor/+/on")
print("THE RESULT", result)
2018-11-18 15:40:10 +01:00
2018-11-29 21:59:08 +01:00
'''
while self.running:
2018-11-18 23:09:17 +01:00
print("RUN", self.test)
value = await self.cbpi.sensor.get_value(1)
print(value)
if value >= 10:
break
2018-11-18 15:40:10 +01:00
await asyncio.sleep(1)
2018-11-29 21:59:08 +01:00
'''
2018-11-18 23:09:17 +01:00
print("STOP LOGIC")
2018-11-18 15:40:10 +01:00
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)