TwiceAsNice
2019-02-18
|
Variables | |
app = NiceApplication.Application(sys.argv) | |
string | ext = "JUMO.DEV1.VAR.TEMPERATURE.EXTERN" |
string | low = "JUMO.DEV1.VAR.TEMPERATURE.LOW" |
string | mid = "JUMO.DEV1.VAR.TEMPERATURE.MID" |
string | top = "JUMO.DEV1.VAR.TEMPERATURE.TOP" |
string | heat = "JUMO.DEV1.VAR.OUTPUT" |
extVal = Nice.get(ext)[0] | |
lowVal = Nice.get(low)[0] | |
midVal = Nice.get(mid)[0] | |
topVal = Nice.get(top)[0] | |
heatVal = Nice.get(heat)[0] | |
jumo.app = NiceApplication.Application(sys.argv) |
string jumo.ext = "JUMO.DEV1.VAR.TEMPERATURE.EXTERN" |
jumo.extVal = Nice.get(ext)[0] |
string jumo.heat = "JUMO.DEV1.VAR.OUTPUT" |
jumo.heatVal = Nice.get(heat)[0] |
string jumo.low = "JUMO.DEV1.VAR.TEMPERATURE.LOW" |
jumo.lowVal = Nice.get(low)[0] |
string jumo.mid = "JUMO.DEV1.VAR.TEMPERATURE.MID" |
jumo.midVal = Nice.get(mid)[0] |
string jumo.top = "JUMO.DEV1.VAR.TEMPERATURE.TOP" |
jumo.topVal = Nice.get(top)[0] |