SmartServo Real-Time Control - Kuka-sunrise-extensions Typing CST Test
Loading…
SmartServo Real-Time Control — Kuka-sunrise-extensions Code
Streaming real-time joint updates to the robot using the proprietary SmartServo API.
SmartServo motion = new SmartServo(robot.getCurrentJointPosition());
motion.setJointVelocityRel(0.2);
robot.moveAsync(motion);
for(int i=0; i<100; i++) {
motion.setJointPosition(newJointPosArray[i]);
Thread.sleep(10);
}Kuka-sunrise-extensions Language Guide
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.
Primary Use Cases
- ▸Advanced robotic motion sequences and path planning
- ▸Integration with PLCs, sensors, and vision systems
- ▸Safety-compliant motion and force monitoring
- ▸Simulation and testing of robotic tasks before deployment
- ▸Custom application development with reusable modules
Notable Features
- ▸Extended Java API for Sunrise Workbench
- ▸Pre-built motion and safety modules
- ▸Integration with external devices and networks
- ▸Simulation and testing support
- ▸Modular and reusable programming components
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.