You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The topic in tasmota has to fit together with the config.ini. In my case i chose:
Tasmota Topic: SML
Tasmota Full Topic: %topic%/
config.ini topic = SML/SENSOR
And another side note: for my installation the VRM looked strange with only transferring grid_power and not the single phases. I changed the script, so that if only grid_power is received, all the phases are calculated in the script.
After the "check if L3 and L3 -> power exists i added the following:
I also commented the "Received JSON MQTT message...." because i receive the energy_forward, energy_reverse not at the same time as the power value.
Because of this it was also necessary to change the setting dbusservice
if grid_forward is not None:
self._dbusservice["/Ac/Energy/Forward"] = (
round(grid_forward, 2)
)
if grid_reverse is not None:
self._dbusservice["/Ac/Energy/Reverse"] = (
round(grid_reverse, 2)
)
Maybe the infos are useful for someone.
Thank you for the great script!
The text was updated successfully, but these errors were encountered:
Did I understand correctly that you have a three phase system, but provided only the sum of power of all three phases and it looked strange? If you provide only the total power it will be used for L1. If you have a three phase system you have to provide all three phases. If you calculate this values for each phase you will mess up your system, since the values are not real.
It took me a while to get it running without a broker in between because of the following things:
Tasmota Topic: SML
Tasmota Full Topic: %topic%/
config.ini topic = SML/SENSOR
And another side note: for my installation the VRM looked strange with only transferring grid_power and not the single phases. I changed the script, so that if only grid_power is received, all the phases are calculated in the script.
After the "check if L3 and L3 -> power exists i added the following:
I also commented the "Received JSON MQTT message...." because i receive the energy_forward, energy_reverse not at the same time as the power value.
Because of this it was also necessary to change the setting dbusservice
Maybe the infos are useful for someone.
Thank you for the great script!
The text was updated successfully, but these errors were encountered: