Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A Sunrise Application moving the robot to a predefined position using a PTP motion command.
import com.kuka.roboticsAPI.applicationModel.RoboticsAPIApplication;
import com.kuka.roboticsAPI.deviceModel.LBR;
public class MoveToPosition extends RoboticsAPIApplication {
private LBR robot;
@Override
public void initialize() {
robot = (LBR) getContext().getDeviceFromType(LBR.class);
}
@Override
public void run() {
robot.move(ptp(0, 0, 0, -90, 0, 90, 0));
}
}KUKA Sunrise Extensions are add-on libraries and tools for KUKA industrial robots running the Sunrise OS. They enhance the core Sunrise Workbench programming environment (Java-based) by providing additional APIs, utilities, and modules for robot motion control, safety, simulation, and application integration.
Origin & Creator
Developed by KUKA Robotics as part of the Sunrise OS ecosystem to provide enhanced robot functionality beyond the base Java API.
Industrial Note
Essential for roboticists, automation engineers, and integrators working on KUKA Sunrise robots in industrial, automotive, and high-precision manufacturing environments.