mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
Fix[extension]: mqtt_sensor did not work with Mash_profile
Error NoneType object as no attribute 'get'
This commit is contained in:
parent
919d6c8e93
commit
6dc1c22e20
2 changed files with 25 additions and 28 deletions
|
@ -1,37 +1,35 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
import asyncio
|
import asyncio
|
||||||
import random
|
import random
|
||||||
import re
|
|
||||||
import random
|
from cbpi.api import parameters, CBPiSensor
|
||||||
from aiohttp import web
|
|
||||||
from cbpi.api import *
|
|
||||||
|
|
||||||
|
|
||||||
@parameters([])
|
@parameters([])
|
||||||
class CustomSensor(CBPiSensor):
|
class CustomSensor(CBPiSensor):
|
||||||
|
|
||||||
def __init__(self, cbpi, id, props):
|
def __init__(self, cbpi, id, props):
|
||||||
super(CustomSensor, self).__init__(cbpi, id, props)
|
super(CustomSensor, self).__init__(cbpi, id, props)
|
||||||
self.value = 0
|
self.value = 0
|
||||||
async def run(self):
|
|
||||||
|
|
||||||
while self.running == True:
|
async def run(self):
|
||||||
self.value = random.randint(10,100)
|
while self.running:
|
||||||
|
self.value = random.randint(10, 100)
|
||||||
self.log_data(self.value)
|
self.log_data(self.value)
|
||||||
|
|
||||||
self.push_update(self.value)
|
self.push_update(self.value)
|
||||||
await asyncio.sleep(1)
|
await asyncio.sleep(1)
|
||||||
|
|
||||||
def get_state(self):
|
def get_state(self):
|
||||||
return dict(value=self.value)
|
return dict(value=self.value)
|
||||||
|
|
||||||
|
|
||||||
def setup(cbpi):
|
def setup(cbpi):
|
||||||
|
|
||||||
'''
|
'''
|
||||||
This method is called by the server during startup
|
This method is called by the server during startup
|
||||||
Here you need to register your plugins at the server
|
Here you need to register your plugins at the server
|
||||||
|
|
||||||
:param cbpi: the cbpi core
|
:param cbpi: the cbpi core
|
||||||
:return:
|
:return:
|
||||||
'''
|
'''
|
||||||
cbpi.plugin.register("CustomSensor", CustomSensor)
|
cbpi.plugin.register("CustomSensor", CustomSensor)
|
||||||
|
|
|
@ -1,28 +1,27 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
import asyncio
|
import asyncio
|
||||||
import random
|
|
||||||
import re
|
from cbpi.api import parameters, Property, CBPiSensor
|
||||||
from aiohttp import web
|
|
||||||
from cbpi.api import *
|
|
||||||
|
|
||||||
|
|
||||||
@parameters([Property.Text(label="Topic", configurable=True)])
|
@parameters([Property.Text(label="Topic", configurable=True)])
|
||||||
class MQTTSensor(CBPiSensor):
|
class MQTTSensor(CBPiSensor):
|
||||||
|
|
||||||
async def on_message(self, message):
|
async def on_message(self, message):
|
||||||
try:
|
try:
|
||||||
self.value = message
|
self.value = float(message)
|
||||||
self.log_data(self.value)
|
self.log_data(self.value)
|
||||||
self.push_update(message)
|
self.push_update(self.value)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e)
|
print(e)
|
||||||
|
|
||||||
def __init__(self, cbpi, id, props):
|
def __init__(self, cbpi, id, props):
|
||||||
super(MQTTSensor, self).__init__(cbpi, id, props)
|
super(MQTTSensor, self).__init__(cbpi, id, props)
|
||||||
self.mqtt_task = self.cbpi.satellite.subcribe(self.props.Topic, self.on_message)
|
self.mqtt_task = self.cbpi.satellite.subcribe(self.props.Topic, self.on_message)
|
||||||
|
self.value: int = 0
|
||||||
|
|
||||||
async def run(self):
|
async def run(self):
|
||||||
while self.running == True:
|
while self.running:
|
||||||
await asyncio.sleep(1)
|
await asyncio.sleep(1)
|
||||||
|
|
||||||
def get_state(self):
|
def get_state(self):
|
||||||
|
@ -36,14 +35,14 @@ class MQTTSensor(CBPiSensor):
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def setup(cbpi):
|
|
||||||
|
|
||||||
|
def setup(cbpi):
|
||||||
'''
|
'''
|
||||||
This method is called by the server during startup
|
This method is called by the server during startup
|
||||||
Here you need to register your plugins at the server
|
Here you need to register your plugins at the server
|
||||||
|
|
||||||
:param cbpi: the cbpi core
|
:param cbpi: the cbpi core
|
||||||
:return:
|
:return:
|
||||||
'''
|
'''
|
||||||
if cbpi.static_config.get("mqtt", False) is True:
|
if cbpi.static_config.get("mqtt", False) is True:
|
||||||
cbpi.plugin.register("MQTTSensor", MQTTSensor)
|
cbpi.plugin.register("MQTTSensor", MQTTSensor)
|
||||||
|
|
Loading…
Reference in a new issue