mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
35 lines
No EOL
798 B
Python
35 lines
No EOL
798 B
Python
from logging.handlers import RotatingFileHandler
|
|
from time import localtime, strftime
|
|
|
|
from cbpi.api.extension import CBPiExtension
|
|
import logging
|
|
|
|
|
|
class CBPiSensor(CBPiExtension):
|
|
def __init__(self, *args, **kwds):
|
|
CBPiExtension.__init__(self, *args, **kwds)
|
|
self.logger = logging.getLogger(__file__)
|
|
self.data_logger = None
|
|
self.state = False
|
|
|
|
def get_parameter(self, name, default):
|
|
return self.cbpi.config.get(name, default)
|
|
|
|
|
|
def log_data(self, value):
|
|
self.cbpi.log.log_data(self.id, value)
|
|
|
|
def init(self):
|
|
pass
|
|
|
|
async def run(self, cbpi):
|
|
self.logger.warning("Sensor Init not implemented")
|
|
|
|
def get_state(self):
|
|
pass
|
|
|
|
def get_value(self):
|
|
pass
|
|
|
|
def get_unit(self):
|
|
pass |