How To Start A Scobot III Level 5
How To Start A Scobot III Level 5
SCREEN SELECTION
To select an option, press either the function key or the first letter of the
desired option. For example, pressing either Fl or T activates the Teach
Positions screen. Exit to DOS can only activated by pressing < Shift > +F9.
TEACH POSITIONS (Fl)
From this screen you can control the robot movements directly and teach
the robot positions.
Note that the controller (and not the PC) performs all the movements and
the recording and storing of the positions. SCORBASE serves as an
interface between the user and the controller.
In this window position recording work is carried out. For that
purpose first step is to set the robot at a position. You can change the
position by the commands written on that window.
After setting the robot at a position (by using that commands) press RP on
key board and you will get RECORD POSITION (1-100)…. on window,
then give it the position name like 1, 2, 3 etc.. If you want to check the
positions then press GP on key board and you will get GO POSITION on
window then type position name like 1,2,3 …. The robot will reach to that
position
This module lets you write and edit your robot programs. The programs are
created by SCORBASE and maintained in the PC RAM.
On pressing F2 you will get EDIT PROGRAM screen there you can
directly write the program and edit the program. To see the program press
L and you will get a new window .Here you can edit the program.
P R O G R AM HAN D L I NG (F3)
This module enables you to save and load programs and positions tables
to and from disk(ette). It also lets you merge programs and position
tables.
Here you can SAVE, LOAD, DELETE the program . (Due to some fault
in software there is some problem in saving the program. Then how to save
the program?
There is a trick –first write the file name ,then press ENTER key 3 times,it
activates all the options then press the keys for saving, loading or deleting
the program whatever you want).
This screen enables you to home the robot, and configure and home the
peripheral equipment. Since the SCORBOT should be homed each time
the controller is turned on, begin each working session by first activating
the Home screen and performing the necessary operations.
RUN CELL CONTROL (F6)
This module lets you run your SCORBASE program together with a
complete runtime screen display reporting the status of inputs and outputs.
The report includes the names you assigned to the various I/O ports.
This screen is used to assign names or text for both the on and off states
of each input and output port.
EXIT TO DOS (Shift + F9)
Press < Shift > +F9 to exit to DOS. SCORBASE will prompt you to confirm:
ARE YOU SURE (Y/N)? N
If changes to the program or position table have been made but not yet
saved to disk, the following message will also flash on the screen:
WARNING !! CHANGES NOT SAVED
TO exit to DOS, press Y. Any other key is regarded as no.
A SIMPLE PROGRAM
1. SET VARIABLE CP TO 2
2. SET VARIABLE W TO 30
3. GO POSITION 7 FAST
4. GO POSITION 1 FAST
5. CLOSE GRIPER
6. GO POSITION CP FAST
In the above program we first define the variable using SET VARIABLE
command to initial value. Here we have used two variable CP and W, with
initial value CP=2 and W=30.The variable CP stores the information about
the potion while the variable W stores the information of duration of time for
which the robot will wait at any particular station/ position. In the third line it
directs the robot to go to position number 7. (NOTE: - ALL THE POSITION
HAS TO BE PRE DEFINED BY THE USER uses RECORD POSITION
command). While giving GP (GO POSITION) command it asks you to enter
the F (FAST) or S (SPEED). If u select S you need to specify speed which
is in the range of 1-10.In the 4th line it is instructed to go to position 1 at fast
speed (maximum possible speed).At position 1 the material to be carried is
placed (here it is wooden cube) and then CLOSE GRIPPER command is
given which picks the material. In the 6th line loop starts. Here it will go to
the position indicated by the variable CP .It will wait there for the specified
time as given by value of variable W.
In the 9th line there is a condition check using IF command. Here if the
desired position is reached then programme will move to next line else the
control will pass to 6th line using JUMP command. After reaching the
desired position the OG (OPEN GRIPPER) command is given and the
wooden cube is released. Then the robot is again sent back to position 7.
The above programme can be executed line by line , once at a time (one
cycle) and in an infinite loop which has to be manually broken.It is decided
on the type of use needed.