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

12
script/test16.py Executable file
View File

@@ -0,0 +1,12 @@
#A single motor at current speed
a= cscan(m1, (ai1,ai2), -2, 2 , steps=100, relative=True)
#A single motor in a given time
a= cscan(m1, (ai1,ai2), -2.0, 3.0, steps=100 ,time = 4.0, relative=True)
#Multiple motors in a given time
a= cscan((m1, m2), (ai1,ai2), (-2.0, -3), (3.0, 5.0), steps=100,time = 4.0, relative=True)