Solax X1 Meter Mode #23583
-
My Tasmota Solax is running for a few years now and I am very happy with it. Thanks everyone that made that possible! If I understand correctly the Meter Mode solution subscribes to an MQTT topic that publishes the current power at the home connection but I can't get it to work and it is not clear to me from reading the documentation. My main question is about setting up the rule correctly. Tasmota is build with SUPPORT_MQTT_EVENT enabled. I am not sure if I need enable more? What I did is let Home Assistant publish the current power that is measured with a Shelly at the home connection to a sensor topic. The power sensor is published on: homeassistant/sensor/shellyem_b0f576_channel_1_power/state as you can see in the picture. With my understanding of the documentation that lead to the following rule but unfortunately it did not work. If there is anyone that can help me out to get this working it would be great! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The Event trigger is single-level only. The mechanism is unrelated to MQTT, and the You'd need one If your device is ESP32-based, I'd recommend replacing the usage of rules with Berry, which has much better features for handling MQTT payloads. |
Beta Was this translation helpful? Give feedback.
The Event trigger is single-level only. The mechanism is unrelated to MQTT, and the
Subscribe
command simply allows you to trigger an event in the style of the regularEvent
command, which does not allow#
as part of the event name.You'd need one
Subscribe
per field, including all object levels, to fully reference each field.If your device is ESP32-based, I'd recommend replacing the usage of rules with Berry, which has much better features for handling MQTT payloads.