actually i have a little scrip that read data from an opc plc and organize
x=0
for m in range(9):
for r in range(11):
for c in range(5):
pnPath = "[TAG01_default]ModuleRack 1/ModuleRack_" + str(m) + "_/Row/Row_" + str(r) + "_/Column/Column_" + str(c) + "_/Module/PartNumber"
snPath = "[TAG01_default]ModuleRack 1/ModuleRack_" + str(m) + "_/Row/Row_" + str(r) + "_/Column/Column_" + str(c) + "_/Module/SerialNumber"
tagread = system.tag.readBlocking([pnPath,snPath])
if tagread[0].value != '':
print "Rack " + str(m)
print " Row " + str(r)
print "Column " + str(c)
#print tagread
pnsn = tagread[0].value + ":S" + tagread[1].value
print pnsn
x+x+1
with this o would like to be able to put in a power table or a text field
to show like my console