#556 WIP dynamic tank views in unit app

This commit is contained in:
Mikayla
2024-11-29 19:33:19 +00:00
parent 7372908637
commit 72fcc01acd
7 changed files with 756 additions and 644 deletions

View File

@@ -184,6 +184,36 @@ style.turbine = {
}
}
style.dtank = {
-- dynamic tank states
states = {
{
color = cpair(colors.black, colors.yellow),
text = "OFF-LINE"
},
{
color = cpair(colors.black, colors.orange),
text = "NOT FORMED"
},
{
color = cpair(colors.black, colors.orange),
text = "RTU FAULT"
},
{
color = cpair(colors.black, colors.green),
text = "ONLINE"
},
{
color = cpair(colors.black, colors.yellow),
text = "LOW FILL"
},
{
color = cpair(colors.black, colors.green),
text = "FILLED"
}
}
}
style.imatrix = {
-- induction matrix states
states = {
@@ -210,7 +240,7 @@ style.imatrix = {
{
color = cpair(colors.black, colors.yellow),
text = "HIGH CHARGE"
},
}
}
}