New ScreenPanel

This commit is contained in:
2018-01-19 10:56:53 +01:00
commit ae4d621609
580 changed files with 46598 additions and 0 deletions

28
script/runAllTutorial.py Executable file
View File

@@ -0,0 +1,28 @@
tutorial_path = "src/main/assembly/help/Tutorial_py/"
run(tutorial_path+"SimulatedDevices")
m1.setSpeed(10)
m2.setSpeed(10)
start=10.0
end=50.0
step=40
for d in os.listdir(tutorial_path):
p = tutorial_path + d
if os.path.isdir(p):
print p
for f in os.listdir(p):
try:
script = p + "/" + f
print "\n----------------------------------------------------------------------------------------------------"
print "Running " + script
print "----------------------------------------------------------------------------------------------------"
set_status("Running: " + script)
run(script)
print get_exec_pars().index, get_exec_pars().group
except:
print >> sys.stderr, sys.exc_info()[0]