ESPHome config for various PowMr Hybrid Inverter models.
All models that are supported by the WIFI-VM device should work:
- POW-HVM1.5H-12V
- POW-HVM2.0H-12V
- POW-HVM2.4H-24V
- POW-HVM3.2H-24V
- POW-HVM3.6M-24V
- POW-HVM4.2M-24V
- POW-HVM6.2M-48V
- POW-HVM8.2M
- POW-HVM10.2M
- POW-HVM2.4H-24V
- POW-HVM10.2M
This configuration can be used on the ESP8266, but you won't be able to use all the sensors due to the memory limitations of the ESP8266. You can use minimal set of sensors/selects, leaving only the ones you need. You can use "Heap size" sensor of Debug module to determine how much free memory left. Looks like minimum heap size, that ensures stability, is near 6Kb. Although I still strongly recommend using ESP32.
- Create new project subdirectory within your ESPHome configuration directory (let it be
powmr-inverter
, for example) - Copy the contents of the
src
repo folder to a newly created project directory. - Now, the
main.yaml
file must be located under<esphome_config>/powmr-inverter
- Create file
powmr-inverter.yaml
in the esphome config directory root and copy contents of example config - Edit substitutions & customize
powmr-inverter.yaml
. You can add contents of common_system & common_sensors to this file or include them separately following the example. - Flash firmware to your ESP32
There are 2 versions of PCB design available. Advanced version is more compact but needs SMD soldering skills, basic version uses 2.54 parts & modular approach.
- Docs for Basic PCB
- Docs for Advanced PCB by @davidebeatrici
In version 1.2, a PZEM module was added for measuring parameters of the input AC grid. If you do not wish to use it, comment out the include of the corresponding module in the main.yaml file.
For easy integration into Home Assistant, you can use the following snippet. It compiles all the essential inverter sensors and controls in a compact manner. The following custom plugins are required: sunsynk-power-flow-card, stack-in-card, tabbed-card, canary.
ESPHome reads sequential Modbus registers in one batch. If you have gaps in register addresses, you need to use the register_count
parameter to skip N registers and continue the batch.
Details in ESPHome docs.
You can debug your register ranges by setting the global log level to VERBOSE
and muting all "noisy" components except the modbus_controller
.
logger:
level: VERBOSE
logs:
component: ERROR # Fix for issue #4717 "Component xxxxxx took a long time for an operation"
modbus_controller: VERBOSE
modbus_controller.text_sensor: WARN
modbus_controller.sensor: WARN
modbus_controller.binary_sensor: WARN
modbus_controller.select: WARN
After this, the ranges map will be printed in the logs:
[15:55:14][C][modbus_controller:307]: ranges
[18:41:21][C][modbus_controller:307]: ranges
[18:41:21][C][modbus_controller:310]: Range type=3 start=0x1196 count=37 skip_updates=0
[18:41:21][C][modbus_controller:310]: Range type=3 start=0x11BC count=16 skip_updates=0
[18:41:21][C][modbus_controller:310]: Range type=3 start=0x138A count=1 skip_updates=2
[18:41:21][C][modbus_controller:310]: Range type=3 start=0x138F count=1 skip_updates=2
[18:41:21][C][modbus_controller:310]: Range type=3 start=0x1391 count=1 skip_updates=2
[18:41:21][C][modbus_controller:310]: Range type=3 start=0x1399 count=1 skip_updates=2
[18:41:21][C][modbus_controller:310]: Range type=3 start=0x139A count=1 skip_updates=2
[18:41:21][C][modbus_controller:310]: Range type=3 start=0x139E count=1 skip_updates=2
[18:41:21][C][modbus_controller:310]: Range type=3 start=0x13A0 count=1 skip_updates=2
In the example above, the sensor registers batches starts from
0x1196
&0x11BC
(one large batch causes data errors). Select registers starts from0x138A
. Using batches for selects triggersModbus device set offline
warning messages, so you need to read them separately.
You will see gaps in register ranges map. To calculate register_count
, you need to convert HEX addresses to decimal and subtract them.
- Uncomment debug section in modules/inverter.yaml or modules/pzem.yaml to enable the debug output of the UART component
# debug: # direction: BOTH # dummy_receiver: false
- Increase the log level to
DEBUG
orVERBOSE
logger: level: WARN
- Registers map: registers-map.md
- Read registers are using little-endian format that doesn't have a native support in ESPHome, so we need a custom function to swap bytes.
- Inverter UART pins (TX2 & RX2) are swapped #25
- Manuals:
- https://github.com/leodesigner/powmr_comm Great research on PowMr registers and C++ firmware code with MQTT. Thanks to author, it helps me a lot.
- https://github.com/syssi/esphome-smg-ii ESPHome project to monitor and control a ISolar/EASUN SMG II inverter via RS232