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

63 lines
1.3 KiB
Python
Raw Normal View History

2019-01-28 22:21:31 +01:00
# -*- coding: utf-8 -*-
2018-11-18 15:40:10 +01:00
import asyncio
2019-01-14 07:33:59 +01:00
from aiohttp import web
2019-01-05 20:43:48 +01:00
from cbpi.api import *
2018-11-18 15:40:10 +01:00
2019-07-27 21:08:19 +02:00
import re
2019-08-16 21:36:55 +02:00
import random
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
2019-08-16 21:36:55 +02:00
2019-01-14 07:33:59 +01:00
interval = Property.Number(label="interval", configurable=True)
2018-11-18 15:40:10 +01:00
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()
2019-01-08 23:31:39 +01:00
self.state = True
2019-01-02 00:48:36 +01:00
2019-01-08 23:31:39 +01:00
def get_state(self):
return self.state
2019-01-02 00:48:36 +01:00
2019-01-08 23:31:39 +01:00
def get_value(self):
return self.value
2018-11-18 15:40:10 +01:00
2019-01-28 22:21:31 +01:00
def get_unit(self):
return "°%s" % self.get_parameter("TEMP_UNIT", "C")
2018-11-18 15:40:10 +01:00
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-08-16 21:36:55 +02:00
self.value = random.randint(1,101)
2019-01-28 22:21:31 +01:00
self.log_data(self.value)
2019-01-14 07:33:59 +01:00
await cbpi.bus.fire("sensor/%s/data" % self.id, value=self.value)
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:
'''
2019-08-16 21:36:55 +02:00
2018-11-18 15:40:10 +01:00
cbpi.plugin.register("CustomSensor", CustomSensor)