Add documentation for KUKA Sunrise features and programs

- Created a new document for the Station interface, detailing its menu structure, process data, safety functions, frames, and smartPAD function buttons.
- Added a document for RobotPowerControl, explaining its purpose for safely shutting down or restarting the KUKA Sunrise Cabinet controller.
- Introduced ServerFriRos2 documentation, outlining its role in establishing an FRI connection between the KUKA LBR iiwa and a ROS 2 computer.
- Documented the TeachKuka application, which allows manual teaching of the KUKA LBR iiwa, including position capturing and trajectory recording.
- Added an overview of Sunrise Workbench, including installation instructions for Windows and Linux.
- Created a section on installing a Windows compatibility tool (PortProton) on Linux.
- Documented the installation process for SunriseWorkbench on Linux using PortProton.
- Added installation instructions for SunriseWorkbench on Windows.
- Created troubleshooting documentation for configuration errors and SSL errors during installation.
- Implemented a hook to generate the shared PDF only during the default-language build.
This commit is contained in:
Даниил Грабарь
2026-08-13 18:01:59 +03:00
parent 08ebd40671
commit 79d88db930
42 changed files with 2973 additions and 17 deletions
@@ -0,0 +1,76 @@
# Connecting to the server
## Deployment options
The project can be deployed in two ways:
| Option | Description | When to use it |
|---|---|---|
| **Local** | Install on your PC | Development, simulation, and debugging |
| **Remote (server)** | Install on a dedicated server connected to the KUKA controller | Working with the physical robot |
With remote deployment, you control the server from your PC over an **SSH connection**.
---
## SSH clients
Choose any of the following applications:
- [**Termius**](https://termius.com/) — cross-platform SSH client with a convenient GUI;
- [**MobaXterm**](https://mobaxterm.mobatek.net/) — multifunctional terminal for Windows;
- [**PuTTY**](https://putty.software/) — classic SSH client for Windows;
- the **built-in terminal or command prompt**, as described below.
For instructions on configuring Termius, MobaXterm, or PuTTY, refer to their official documentation.
---
## Connection details
```
IP address: 192.168.21.1
Username: cobot
Password: 12345678
```
!!! warning "Network requirement"
Your PC must be on the **same network/subnet as the robot** (for example, the KnASU network). Otherwise, the connection cannot be established.
---
## Connecting from the built-in terminal
=== "Linux"
Any distribution can be used. Open a terminal and run:
```bash
ssh cobot@192.168.21.1
```
=== "Windows"
**Windows 10** or later is required for the built-in SSH client. Open **Command Prompt** or **PowerShell** and run:
```powershell
ssh cobot@192.168.21.1
```
The command will prompt for a password:
```
cobot@192.168.21.1's password:
```
Enter `12345678`. Characters are not displayed while you type; this is normal security behavior. Press ++enter++.
After a successful connection, the server command prompt appears:
```
cobot@server:~$
```
---
**Next step:** [Project installation](installation.md)