S allius/issue117 (#122)

* add shutdown flag

* add more register definitions

* add start commando for client side connections

* add first support for port 8899

* fix shutdown

* add client_mode configuration

* read client_mode config to setup inverter connections

* add client_mode connections over port 8899

* add preview build

* add documentation for client_mode

* catch os error and log thme with DEBUG level

* update changelog
This commit is contained in:
Stefan Allius
2024-07-10 20:43:03 +02:00
committed by GitHub
parent c7a33b4a35
commit 112c7e66f2
3 changed files with 11 additions and 2 deletions

View File

@@ -60,7 +60,10 @@ class ModbusTcp():
return
except (ConnectionRefusedError, TimeoutError) as error:
logging.info(f'{error}')
logging.debug(f'Inv-conn:{error}')
except OSError as error:
logging.info(f'os-error: {error}')
except Exception:
logging.error(