Smart Meter Interface MODBUS without MQTT how to access to reading ? #23252
Replies: 3 comments 3 replies
-
Any update? IS there a REST or Modbus interface so that we can connect the device to a BMS system as a slave? |
Beta Was this translation helpful? Give feedback.
-
The use case is: I have a IoT device connected to the site and monitoring and controlling energy meters over Modbus. I'd like to monitor and control HVAC equipments. So I was thinking I can connect to the Tasmota firmware over an industry standard protocol such as Modbus, REST, etc. Collect telemetry and send commands. If I understood right, there is a way to 'hack' this, by using "Tasmota commands over http". Where I can find such documentation so I can check if it enough for now? Thank you in advance. I intend to collect data every 5 minutes or so. |
Beta Was this translation helpful? Give feedback.
-
Hello folks,
I'm setting up a point-2-point connection to my dongle for BMS (AP) and a display based on Tasmota LVGL (STA).
All work good, Smart Meter Interface is setup - I can see all the values retrieved on the welcome web page .
Having an MQTT connection, from berry I can pickup what I need
eg.
import json
var sensors = json.load(tasmota.read_sensors())
print(sensors.find("SMA",{}).find("vSOC"))
There's a way to to pickup the same vSOC value when an MQTT broker connection is NOT available ?
Thanks,
Paolo
Beta Was this translation helpful? Give feedback.
All reactions