imautohuttraeger wrote: ↑Friday 14 February 2025 9:11
Great stuff. As you can see the voltage of each phase: Is it possible to also see the power of each phase rather than the cumulated figure?
The availability of data depends on the data provided by the smart meter.
Unfortunately, the meter I use (sx631/s34u18) is not able to publish such data. For example, the description includes L1, L2, L3 current intensity, but in reality it does not publish such data.
The Tasmota script is very easy to extend and you can immediately see on the web interface whether the value of the new data is displayed or not. If the new obis code publishes data, then the Domoticz plugin.py needs to be extended according to the description.
The Tasmota script needs to be extended in this part:
1,1-0:32.7.0(@1,L1 Voltage,V,volts_l1,1
1,1-0:52.7.0(@1,L2 Voltage,V,volts_l2,1
1,1-0:72.7.0(@1,L3 Voltage,V,volts_l3,1
1,1-0:1.7.0(@1,Power import,kW,pwr_imp,3
1,1-0:2.7.0(@1,Power export,kW,pwr_exp,3
1,1-0:13.7.0(@1,Power factor,,factor,3
1,1-0:14.7.0(@1,Frequency,Hz,freq,2
1,0-0:96.14.0(@1,Current tariff,,tariff,0
1,=h<hr/>
1,1-0:1.8.0(@1,Energy import,kWh,enrg_imp,3
1,1-0:2.8.0(@1,Energy export,kWh,enrg_exp,3
1,1-0:1.8.1(@1,Energy import T1,kWh,enrg_imp_t1,3
1,1-0:1.8.2(@1,Energy import T2,kWh,enrg_imp_t2,3
1,1-0:2.8.1(@1,Energy export T1,kWh,enrg_exp_t1,3
1,1-0:2.8.2(@1,Energy export T2,kWh,enrg_exp_t2,3
In the future, I will review what other data would be worth reading out from the meter.