Labman Plotter
Create your own script
Use the commands to the right to create a program to plot a drawing of your design.
 
|
Scripting Commands
Axis limits are:
X: 600mm
Y: 370mm
Pen colours are:
1: Red
2: Green
3: Purple
4: Black
5: Blue
| Description | Command |
| Comments | // Comment |
| Pick a pen (1=red, 2=green) | pickpen=1 |
| Returns the current pen | returnpen= |
| Moves the XY axes | xy=100,10 |
| Moves the X axis | x=10 |
| Moves the Y axis | y=10 |
| Draws a circle at (100,50) with a radius of 20 | circle=100,50,20 |
| Lift the pen up from the drawing area | penup= |
| Put the pen onto the drawing board | pendown= |
|