@dietlman Thanks!
All those sensors with “smartmeter” in the name only exists in my fork of this integration. I haven’t had time to prepare a pull-request for that part. But I should do that. I have been running that code since November without any issues.
Also, you need a Fronius SmartMeter to be able to get to those sensors.
These are all the values that is possible to aquire from that API:
"0" : {
/* older devices do not support any detailed information */
"TimeStamp" : 1406816001 ,
"Enable" : 1,
"Visible" : 1,
"PowerReal_P_Sum" : -834.13,
"Meter_Location_Current" : 0,
"PowerReal_P_Phase_1" : -261.86,
"PowerReal_P_Phase_2" : -296.26,
"PowerReal_P_Phase_3" : -276.01,
"PowerReactive_Q_Sum" : 489.34 ,
"PowerReactive_Q_Phase_1" : 169.63 ,
"PowerReactive_Q_Phase_2" : 158.39 ,
"PowerReactive_Q_Phase_3" : 161.32 ,
"Current_AC_Phase_1" : 1.43,
"Current_AC_Phase_2" : 1.522 ,
"Current_AC_Phase_3" : 1.44,
"Voltage_AC_Phase_1" : 233.1 ,
"Voltage_AC_Phase_2" : 234.4 ,
"Voltage_AC_Phase_3" : 233.8 ,
"Voltage_AC_PhaseToPhase_12 " : 404.9 ,
"Voltage_AC_PhaseToPhase_23 " : 405.5 ,
"Voltage_AC_PhaseToPhase_31 " : 404.3 ,
"Frequency_Phase_Average" : 50,
"PowerApparent_S_Sum" : 967,
"PowerFactor_Sum" : 0.86,
"PowerFactor_Phase_1" : 0.83,
"PowerFactor_Phase_2" : 0.88,
"PowerFactor_Phase_3" : 0.86,
"EnergyReal_WAC_Sum_Produced " : 33989 ,
"EnergyReal_WAC_Sum_Consumed " : 1365,
"EnergyReactive_VArAC_Sum_Produced" : 4020,
"EnergyReactive_VArAC_Sum_Consumed" : 204310 ,
"EnergyReal_WAC_Plus_Absolute " : 1365,
"EnergyReal_WAC_Minus_Absolute " : 33989
},
And out of all of those I have chosen to add the following ones to the integration:
'smartmeter_current_ac_phase_one': ['smartmeter', False, 'Current_AC_Phase_1', 'SmartMeter Current AC Phase 1', 'A', False, 'mdi:solar-power'],
'smartmeter_current_ac_phase_two': ['smartmeter', False, 'Current_AC_Phase_2', 'SmartMeter Current AC Phase 2', 'A', False, 'mdi:solar-power'],
'smartmeter_current_ac_phase_three': ['smartmeter', False, 'Current_AC_Phase_3', 'SmartMeter Current AC Phase 3', 'A', False, 'mdi:solar-power'],
'smartmeter_voltage_ac_phase_one': ['smartmeter', False, 'Voltage_AC_Phase_1', 'SmartMeter Voltage AC Phase 1', 'V', False, 'mdi:solar-power'],
'smartmeter_voltage_ac_phase_two': ['smartmeter', False, 'Voltage_AC_Phase_2', 'SmartMeter Voltage AC Phase 2', 'V', False, 'mdi:solar-power'],
'smartmeter_voltage_ac_phase_three': ['smartmeter', False, 'Voltage_AC_Phase_3', 'SmartMeter Voltage AC Phase 3', 'V', False, 'mdi:solar-power'],
'smartmeter_energy_ac_absolute_plus': ['smartmeter', False, 'EnergyReal_WAC_Plus_Absolute', 'SmartMeter Energy AC Absolute Plus', 'Wh', 'energy', 'mdi:solar-power'],
'smartmeter_energy_ac_absolute_minus': ['smartmeter', False, 'EnergyReal_WAC_Minus_Absolute', 'SmartMeter Energy AC Absolute Minus', 'Wh', 'energy', 'mdi:solar-power'],
'smartmeter_energy_ac_consumed': ['smartmeter', False, 'EnergyReal_WAC_Sum_Consumed', 'SmartMeter Energy AC Consumed', 'Wh', 'energy', 'mdi:solar-power'],
'smartmeter_energy_ac_sold': ['smartmeter', False, 'EnergyReal_WAC_Sum_Produced', 'SmartMeter Energy AC Sold', 'Wh', 'energy', 'mdi:solar-power']
With these sensors you could then monitor the power outage on each phase and see if you could use a lower fuse, and possibly save some money. And you can see exactly how much power that has passed the meter and compare it with the electricity bill.