This integration adds support for solar inverters by Chinese manufacturer Shangai Sermatec Energy Technology to the Home Assistant. Currectly the integration supports reading all basic data, including PV, battery and grid status. Entity friendly names language is selectable during integration configuration.
Sermatec SMT-10K-TL-TH
IMPORTANT NOTICE FOR USERS OF LEGACY VERSIONS (pre v2.0.0): The new version of the integration is not backwards-compatible. This means you will need to manually remove the device from your Home Assistant and then add again.
+ ADD INTEGRATION
-> search for Sermatec Inverter -> fill in host, port and select language -> click submit.Notes:
8899
.If for some reason you need to use the legacy version which utilized the first version of the communication script, it is still available for downloaded in Releases.
To use this integration with Energy Dashboard or to calculate energy usage/import/export etc. you need to use the Riemann sum integration. You can use a new GUI setup in a Helpers category (which is recommended), or an old yaml config method, example is below. Do not forget to set:
k
and integration time (unit_time) to h
(hours) to get values in kWh
- important to be able to use these in the Energy dashboard!left
, otherwise there will be very inaccurate results!sensor:
- platform: integration
source: sensor.solar_inverter_grid_export
name: Grid export
unique_id: sermatec_energy_grid_export
unit_prefix: k
round: 2
method: left
- platform: integration
source: sensor.solar_inverter_grid_import
name: Grid import
unique_id: sermatec_energy_grid_import
unit_prefix: k
round: 2
method: left
- platform: integration
source: sensor.solar_inverter_pv_total_power
name: PV total energy
unique_id: sermatec_energy_pv_total
unit_prefix: k
round: 2
method: left
- platform: integration
source: sensor.solar_inverter_pv1_power
name: PV1 energy
unique_id: sermatec_energy_pv1
unit_prefix: k
round: 2
method: left
- platform: integration
source: sensor.solar_inverter_pv2_power
name: PV2 energy
unique_id: sermatec_energy_pv2
unit_prefix: k
round: 2
method: left
- platform: integration
source: sensor.solar_inverter_battery_charging_power
name: Battery charging energy
unique_id: sermatec_energy_battery_charging
unit_prefix: k
round: 2
method: left
- platform: integration
source: sensor.solar_inverter_battery_discharging_power
name: Battery discharging energy
unique_id: sermatec_energy_battery_discharging
unit_prefix: k
round: 2
method: left
To track consumption per specified time interval you can use Utility Meter.
If you have trouble with setting up the integration, data retrieval or see some exceptions in the logs, you can open an issue. Please include your inverter model and PCU version if possible.
If you miss any feature, you may try opening the issue as well. But at first, have a look at other issues or milestones, maybe the feature is already in development.
Inverter communication script is in development in this repository, which includes also a detailed documentation.
Because the protocol used for local communication is reverse-engineered (due to the lack of the official documentation), I am not responsible for any damage that this integration could cause to your inverter or to your house wiring / electrical equipment. Use at your own risk. You can also lose warranty, some distributors are known to not like using unofficial ways of interfacing with the inverter.
The project is licensed under the MIT License. (C) Ondrej Golasowski and contributors. Special thanks go to everybody who helped to test and verify this integration or provided any manuals or documentations.