-
Notifications
You must be signed in to change notification settings - Fork 320
Description
Summary:
We are managing 500 energy meters, and each meter has 11 tags (parameters like kWh, kW, voltage, etc.).
Manually placing each of these tags on SCADA-LTS display is time-consuming and inefficient.
✅ Goal:
To automatically generate an HTML table on the SCADA-LTS display that shows the 11 tags for each meter without manually adding each tag point to the display panel.
🔢 Example Use Case:
Instead of creating 5,500 individual display items (500 meters × 11 tags), we want to:
Write a single dynamic HTML table
Loop through all meter IDs
Auto-fill tag values using SCADA-LTS placeholders like ${tagName} or ${pointID}
📌 Sample HTML Table (for 1 meter):
| Meter Name | Voltage (V) | Current (A) | Power (kW) | Energy (kWh) |
|---|---|---|---|---|
| Meter 001 | ${meter001_voltage} | ${meter001_current} | ${meter001_power} | ${meter001_energy} |
Now imagine this repeats for all 500 meters automatically using a loop or data-driven HTML generation logic.
🔧 Possible Solutions:
Option 1: Allow custom HTML with tag placeholders and loop logic in SCADA-LTS display panel
Option 2: Provide support for loading external HTML via URL or iframe with SCADA tag API
Option 3: Create a built-in macro or template engine to render repeating tag groups
💬 Request:
Please add support or guidance for:
Automating large tag display using structured HTML tables
Avoiding manual placement of each tag
Possibly loading from CSV/JSON to generate display