diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-04-29 16:41:59 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-04-29 17:05:35 +0300 |
commit | e93ebaad0a01c90237280cbdf98099abef6adefa (patch) | |
tree | 878050ad240ca6af4286a198439205d291677be9 /src/temphumd.py | |
parent | c412bf2ee0a3fbf9032fc32a26837d4fbc7585c5 (diff) |
temphum: support multiple temp/relhum sensors
Diffstat (limited to 'src/temphumd.py')
-rwxr-xr-x | src/temphumd.py | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/src/temphumd.py b/src/temphumd.py new file mode 100755 index 0000000..563d192 --- /dev/null +++ b/src/temphumd.py @@ -0,0 +1,78 @@ +#!/usr/bin/env python3 +import asyncio +import json +import logging + +from typing import Optional + +from home.config import config +from home.util import parse_addr +from home.temphum import SensorType, create_sensor, TempHumSensor + +logger = logging.getLogger(__name__) +sensor: Optional[TempHumSensor] = None +lock = asyncio.Lock() +delay = 0.01 + + +async def get_measurements(): + async with lock: + await asyncio.sleep(delay) + + temp = sensor.temperature() + rh = sensor.humidity() + + return rh, temp + + +async def handle_client(reader, writer): + request = None + while request != 'quit': + try: + request = await reader.read(255) + if request == b'\x04': + break + request = request.decode('utf-8').strip() + except Exception: + break + + if request == 'read': + try: + rh, temp = await asyncio.wait_for(get_measurements(), timeout=3) + data = dict(humidity=rh, temp=temp) + except asyncio.TimeoutError as e: + logger.exception(e) + data = dict(error='i2c call timed out') + else: + data = dict(error='invalid request') + + writer.write((json.dumps(data) + '\r\n').encode('utf-8')) + try: + await writer.drain() + except ConnectionResetError: + pass + + writer.close() + + +async def run_server(host, port): + server = await asyncio.start_server(handle_client, host, port) + async with server: + logger.info('Server started.') + await server.serve_forever() + + +if __name__ == '__main__': + config.load() + + if 'measure_delay' in config['sensor']: + delay = float(config['sensor']['measure_delay']) + + sensor = create_sensor(SensorType(config['sensor']['type']), + int(config['sensor']['bus'])) + + try: + host, port = parse_addr(config['server']['listen']) + asyncio.run(run_server(host, port)) + except KeyboardInterrupt: + logging.info('Exiting...') |