tests/python/runtime.py
author greg
Thu, 28 May 2009 13:40:29 +0200
changeset 350 a3a5561bde1d
parent 291 701c0601db02
permissions -rw-r--r--
- now call load, start, free PLC from the python Thread

- add a wx timer (500ms) that pull the plc state to refresh Beremiz icons
(fix problem when command PLC with the TaskBar icon)
291
701c0601db02 Added systematic stdout.flush runtime side, so that results appear in log window
etisserant
parents: 283
diff changeset
     1
import time,sys
283
d0e6fc0701fb Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
diff changeset
     2
def myprintfunc(arg):
d0e6fc0701fb Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
diff changeset
     3
    print arg
291
701c0601db02 Added systematic stdout.flush runtime side, so that results appear in log window
etisserant
parents: 283
diff changeset
     4
    sys.stdout.flush()
283
d0e6fc0701fb Added "runtime.py", a file that is executed in python thread in runtime, before handling python_eval FBs requests. Added small python editor taken from wxPython demo, and appropriate icon and button to launch it.
etisserant
parents:
diff changeset
     5
    return arg