craftbeerpi4-pione/cbpi/extension/dummysensor/__init__.py

59 lines
1.1 KiB
Python
Raw Normal View History

2018-11-18 15:40:10 +01:00
import asyncio
import logging
2018-12-03 22:16:03 +01:00
import random
2018-11-18 15:40:10 +01:00
2019-01-05 20:43:48 +01:00
from cbpi.api import *
2018-11-18 15:40:10 +01:00
class CustomSensor(CBPiSensor):
2018-12-08 14:21:00 +01:00
# Custom Properties which will can be configured by the user
p1 = Property.Number(label="Test")
p2 = Property.Text(label="Test")
2018-11-18 15:40:10 +01:00
interval = Property.Number(label="interval")
2018-12-08 14:21:00 +01:00
# Internal runtime variable
2018-11-18 23:09:17 +01:00
value = 0
2018-11-18 15:40:10 +01:00
@action(key="name", parameters={})
def myAction(self):
2018-12-08 14:21:00 +01:00
'''
Custom Action Exampel
:return: None
'''
2018-11-18 15:40:10 +01:00
pass
2019-01-02 00:48:36 +01:00
def init(self):
super().init()
2018-11-18 15:40:10 +01:00
def state(self):
super().state()
def stop(self):
pass
async def run(self, cbpi):
2018-11-18 23:09:17 +01:00
self.value = 0
2018-11-18 15:40:10 +01:00
while True:
2018-12-08 14:21:00 +01:00
await asyncio.sleep(self.interval)
2019-01-02 00:48:36 +01:00
self.log_data(10)
2018-11-18 23:09:17 +01:00
self.value = self.value + 1
2018-12-13 21:45:33 +01:00
await cbpi.bus.fire("sensor/%s" % self.id, value=self.value)
2018-12-29 00:27:19 +01:00
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("CustomSensor", CustomSensor)