* add tsun_v2 default configuration * Add port 10000 for gen 3 plus inverters * add monitor_sn for solarman support * listen on port 10000 for solarman inverters * initial version for gen 3 plus support * refactoring split gen3 and gen3plus * refactoring * refactoring classes * refactor proxy statistic counter * - fix loggin levels - user super() in close() and __del__() * add config for gen 3 plus * Add solarman config support * refacot Message.. classes * rename class MessageG3 into Talent * refactor close() handler * refactor disc() handler * move loop() into the base class AsyncStream * move async_read, _write and _forward into base class * Cleanup * move server_loop and client_loop into basic class * add msg forwarding for solarman V5 protocol * move server_loop() and client_loop to class AsyncStream * rename AsyncStreamxx ton Connectionxx * fix unit tests * make more attributes privae * load .env file * wait after last test * ignore .env * add response handler * Update README.md * update unreleased changes * home assistant add more diagnostic values * fix typo * Update README.md Definition of the inverter generations added to the compatibility table * add ha couter for 'Internal SW Exceptions' * Update README.md Fixes an incorrect marking in the display of the configuration file * Update README.md Planning documented for MS-2000 support * S allius/issue33 (#34) * - fix issue 33 The TSUN Cloud now responds to contact_info and get_time messages with an empty display message and not with a response message as before. We tried to parse data from the empty message, which led to an exception * Add test with empty conn_ind from inverter * version 0.5.5 * add tsun_v2 default configuration * Add port 10000 for gen 3 plus inverters * add monitor_sn for solarman support * listen on port 10000 for solarman inverters initial version for gen 3 plus support * refactoring split gen3 and gen3plus * refactoring * refactoring classes * refactor proxy statistic counter * - fix loggin levels - user super() in close() and __del__() * add config for gen 3 plus * Add solarman config support * refacot Message.. classes * rename class MessageG3 into Talent * refactor close() handler * refactor disc() handler * move loop() into the base class AsyncStream * move async_read, _write and _forward into base class * Cleanup * move server_loop and client_loop into basic class * add msg forwarding for solarman V5 protocol * move server_loop() and client_loop to class AsyncStream * rename AsyncStreamxx ton Connectionxx * fix unit tests * make more attributes privae load .env file * wait after last test * ignore .env * add response handler
41 lines
1.7 KiB
TOML
41 lines
1.7 KiB
TOML
# configuration to reach tsun cloud
|
|
tsun.enabled = true # false: disables connecting to the tsun cloud, and avoids updates
|
|
tsun.host = 'logger.talent-monitoring.com'
|
|
tsun.port = 5005
|
|
|
|
# configuration to reach the new tsun cloud for G3 Plus inverters
|
|
solarman.enabled = true # false: disables connecting to the tsun cloud, and avoids updates
|
|
solarman.host = 'iot.talent-monitoring.com'
|
|
solarman.port = 10000
|
|
|
|
# mqtt broker configuration
|
|
mqtt.host = 'mqtt' # URL or IP address of the mqtt broker
|
|
mqtt.port = 1883
|
|
mqtt.user = ''
|
|
mqtt.passwd = ''
|
|
|
|
|
|
# home-assistant
|
|
ha.auto_conf_prefix = 'homeassistant' # MQTT prefix for subscribing for homeassistant status updates
|
|
ha.discovery_prefix = 'homeassistant' # MQTT prefix for discovery topic
|
|
ha.entity_prefix = 'tsun' # MQTT topic prefix for publishing inverter values
|
|
ha.proxy_node_id = 'proxy' # MQTT node id, for the proxy_node_id
|
|
ha.proxy_unique_id = 'P170000000000001' # MQTT unique id, to identify a proxy instance
|
|
|
|
# microinverters
|
|
inverters.allow_all = true # allow inverters, even if we have no inverter mapping
|
|
|
|
# inverter mapping, maps a `serial_no* to a `mqtt_id` and defines an optional `suggested_place` for `home-assistant`
|
|
#
|
|
# for each inverter add a block starting with [inverters."<16-digit serial numbeer>"]
|
|
[inverters."R170000000000001"]
|
|
#node_id = '' # Optional, MQTT replacement for inverters serial number
|
|
#suggested_area = '' # Optional, suggested installation area for home-assistant
|
|
|
|
#[inverters."R17xxxxxxxxxxxx2"]
|
|
#node_id = '' # Optional, MQTT replacement for inverters serial number
|
|
#suggested_area = '' # Optional, suggested installation area for home-assistant
|
|
|
|
|
|
|