2021-02-02 21:22:59 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import asyncio
|
|
|
|
import random
|
|
|
|
import re
|
|
|
|
import random
|
|
|
|
from aiohttp import web
|
|
|
|
from cbpi.api import *
|
|
|
|
import os, re, threading, time
|
2021-02-06 00:40:55 +01:00
|
|
|
from subprocess import call
|
2021-02-27 20:09:19 +01:00
|
|
|
import random
|
2021-02-02 21:22:59 +01:00
|
|
|
|
2021-02-06 00:40:55 +01:00
|
|
|
def getSensors():
|
|
|
|
try:
|
|
|
|
arr = []
|
|
|
|
for dirname in os.listdir('/sys/bus/w1/devices'):
|
|
|
|
if (dirname.startswith("28") or dirname.startswith("10")):
|
|
|
|
arr.append(dirname)
|
|
|
|
return arr
|
|
|
|
except:
|
2021-02-06 14:11:30 +01:00
|
|
|
return []
|
2021-02-06 00:40:55 +01:00
|
|
|
|
2021-02-02 21:22:59 +01:00
|
|
|
|
2021-02-06 00:40:55 +01:00
|
|
|
class ReadThread (threading.Thread):
|
2021-02-02 21:22:59 +01:00
|
|
|
|
2021-02-06 00:40:55 +01:00
|
|
|
value = 0
|
2021-02-02 21:22:59 +01:00
|
|
|
def __init__(self, sensor_name):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self.value = 0
|
|
|
|
self.sensor_name = sensor_name
|
|
|
|
self.runnig = True
|
|
|
|
|
|
|
|
def shutdown(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
self.runnig = False
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
|
|
|
|
while self.runnig:
|
2021-02-06 00:40:55 +01:00
|
|
|
try:
|
|
|
|
if self.sensor_name is None:
|
|
|
|
return
|
2022-01-25 07:47:40 +01:00
|
|
|
with open('/sys/bus/w1/devices/%s/w1_slave' % self.sensor_name, 'r') as content_file:
|
2021-02-06 00:40:55 +01:00
|
|
|
content = content_file.read()
|
|
|
|
if (content.split('\n')[0].split(' ')[11] == "YES"):
|
|
|
|
temp = float(content.split("=")[-1]) / 1000 # temp in Celcius
|
|
|
|
self.value = temp
|
2021-02-02 21:22:59 +01:00
|
|
|
except:
|
|
|
|
pass
|
2021-02-16 20:37:51 +01:00
|
|
|
|
2021-02-02 21:22:59 +01:00
|
|
|
time.sleep(1)
|
|
|
|
|
2021-04-09 10:36:06 +02:00
|
|
|
@parameters([Property.Select(label="Sensor", options=getSensors()),
|
2021-05-02 10:03:25 +02:00
|
|
|
Property.Number(label="offset",configurable = True, default_value = 0, description="Sensor Offset (Default is 0)"),
|
2021-04-09 10:36:06 +02:00
|
|
|
Property.Select(label="Interval", options=[1,5,10,30,60], description="Interval in Seconds")])
|
2021-02-02 21:22:59 +01:00
|
|
|
class OneWire(CBPiSensor):
|
|
|
|
|
|
|
|
def __init__(self, cbpi, id, props):
|
|
|
|
super(OneWire, self).__init__(cbpi, id, props)
|
2021-02-27 20:09:19 +01:00
|
|
|
self.value = 200
|
2021-02-02 21:22:59 +01:00
|
|
|
|
|
|
|
async def start(self):
|
|
|
|
await super().start()
|
2021-02-06 00:40:55 +01:00
|
|
|
self.name = self.props.get("Sensor")
|
|
|
|
self.interval = self.props.get("Interval", 60)
|
2021-04-11 12:30:34 +02:00
|
|
|
self.offset = float(self.props.get("offset",0))
|
2021-04-09 10:36:06 +02:00
|
|
|
|
2021-02-06 00:40:55 +01:00
|
|
|
self.t = ReadThread(self.name)
|
|
|
|
self.t.daemon = True
|
2021-02-02 21:22:59 +01:00
|
|
|
def shudown():
|
|
|
|
shudown.cb.shutdown()
|
|
|
|
shudown.cb = self.t
|
|
|
|
self.t.start()
|
|
|
|
|
|
|
|
async def stop(self):
|
|
|
|
try:
|
|
|
|
self.t.stop()
|
2021-02-06 00:40:55 +01:00
|
|
|
self.running = False
|
2021-02-02 21:22:59 +01:00
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
async def run(self):
|
2021-03-08 01:34:13 +01:00
|
|
|
while self.running == True:
|
2021-04-09 10:36:06 +02:00
|
|
|
self.TEMP_UNIT=self.get_config_value("TEMP_UNIT", "C")
|
|
|
|
if self.TEMP_UNIT == "C": # Report temp in C if nothing else is selected in settings
|
|
|
|
self.value = round((self.t.value + self.offset),2)
|
|
|
|
else: # Report temp in F if unit selected in settings
|
|
|
|
self.value = round((9.0 / 5.0 * self.t.value + 32 + self.offset), 2)
|
2021-02-27 20:09:19 +01:00
|
|
|
|
2021-02-16 20:37:51 +01:00
|
|
|
self.log_data(self.value)
|
2021-02-02 21:22:59 +01:00
|
|
|
self.push_update(self.value)
|
2021-02-06 00:40:55 +01:00
|
|
|
await asyncio.sleep(self.interval)
|
2021-02-02 21:22:59 +01:00
|
|
|
|
|
|
|
def get_state(self):
|
|
|
|
return dict(value=self.value)
|
|
|
|
|
|
|
|
|
|
|
|
def setup(cbpi):
|
|
|
|
cbpi.plugin.register("OneWire", OneWire)
|
2021-02-06 00:40:55 +01:00
|
|
|
try:
|
|
|
|
# Global Init
|
|
|
|
call(["modprobe", "w1-gpio"])
|
|
|
|
call(["modprobe", "w1-therm"])
|
|
|
|
except Exception as e:
|
|
|
|
pass
|