mirror of
https://github.com/joBr99/nspanel-lovelace-ui.git
synced 2025-12-20 14:37:01 +01:00
add power page
This commit is contained in:
51
HMI/code_gen/pages/cardPower.py
Normal file
51
HMI/code_gen/pages/cardPower.py
Normal file
@@ -0,0 +1,51 @@
|
||||
from shared import *
|
||||
head = sharedhead + """
|
||||
if(tInstruction.txt=="entityUpd")
|
||||
{
|
||||
// command format: entityUpd,heading,navigation,colorHome,iconHome[,iconColor,icon,speed,valueUp,valueDown]x6
|
||||
spstr strCommand.txt,tHeading.txt,"~",1
|
||||
""" + navigation + """
|
||||
// icon color home
|
||||
spstr strCommand.txt,tTmp.txt,"~",3
|
||||
covx tTmp.txt,t1.pco,0,0
|
||||
// icon home
|
||||
spstr strCommand.txt,t1.txt,"~",4
|
||||
"""
|
||||
print(head)
|
||||
start = 5
|
||||
for i in range(0,6):
|
||||
idxstart = start + (i)*5
|
||||
item = f"""
|
||||
// iconColor
|
||||
spstr strCommand.txt,tTmp.txt,"~",{idxstart}
|
||||
covx tTmp.txt,t{i}Icon.pco,0,0
|
||||
// icon
|
||||
spstr strCommand.txt,t{i}Icon.txt,"~",{idxstart+1}
|
||||
// speed
|
||||
spstr strCommand.txt,tTmp.txt,"~",{idxstart+2}
|
||||
covx tTmp.txt,t{i}Speed.val,0,0
|
||||
// upper text
|
||||
spstr strCommand.txt,t{i}o.txt,"~",{idxstart+3}
|
||||
// lower text
|
||||
spstr strCommand.txt,t{i}u.txt,"~",{idxstart+4}
|
||||
|
||||
if(t{i}Icon.txt!="")
|
||||
{{
|
||||
vis t{i}Icon,1
|
||||
vis t{i}o,1
|
||||
vis t{i}u,1
|
||||
vis h{i},1
|
||||
}}else
|
||||
{{
|
||||
vis t{i}Icon,0
|
||||
vis t{i}o,0
|
||||
vis t{i}u,0
|
||||
vis h{i},0
|
||||
}}
|
||||
"""
|
||||
print(item)
|
||||
foot = """
|
||||
}
|
||||
""" + sharedfoot
|
||||
print(foot)
|
||||
|
||||
Reference in New Issue
Block a user