Skip to content

Commit afd8887

Browse files
authored
Update README.md
1 parent 6348058 commit afd8887

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ parameters.Soap.Password = "default";
5858
controller.Connect(parameters);
5959
```
6060

61+
![UnderAutomation Staubli communication SDK](https://raw.githubusercontent.com/underautomation/Staubli.NET/refs/heads/main/.github/assets/Connect.jpg)
62+
63+
6164
---
6265

6366
### 🔍 System Information
@@ -72,6 +75,9 @@ Parameter[] controllerParams = controller.Soap.GetControllerParameters();
7275
DhParameters[] dh = controller.Soap.GetDhParameters(robot: 0);
7376
```
7477

78+
79+
![UnderAutomation Staubli communication SDK](https://raw.githubusercontent.com/underautomation/Staubli.NET/refs/heads/main/.github/assets/ControllerInfo.jpg)
80+
7581
---
7682

7783
### 📍 Position & Joints
@@ -84,6 +90,9 @@ CartesianJointPosition pos = controller.Soap.GetCurrentCartesianJointPosition(ro
8490
double[] joints = pos.JointsPosition;
8591
```
8692

93+
94+
![UnderAutomation Staubli communication SDK](https://raw.githubusercontent.com/underautomation/Staubli.NET/refs/heads/main/.github/assets/CurrentPosition.jpg)
95+
8796
---
8897

8998
### 🧠 Kinematics
@@ -96,6 +105,10 @@ IForwardKinematics fk = controller.Soap.ForwardKinematics(0, joints);
96105
IReverseKinematics ik = controller.Soap.ReverseKinematics(0, joints, fk.Position, fk.Config, range);
97106
```
98107

108+
109+
![UnderAutomation Staubli communication SDK](https://raw.githubusercontent.com/underautomation/Staubli.NET/refs/heads/main/.github/assets/Kinematics.jpg)
110+
111+
99112
---
100113

101114
### ⚙️ Motion Control
@@ -109,6 +122,8 @@ controller.Soap.SetPower(true);
109122
controller.Soap.MoveL(0, targetFrame, motionDesc);
110123
```
111124

125+
![UnderAutomation Staubli communication SDK](https://raw.githubusercontent.com/underautomation/Staubli.NET/refs/heads/main/.github/assets/Motion.jpg)
126+
112127
---
113128

114129
### 📡 I/O Management
@@ -122,6 +137,8 @@ PhysicalIo[] ios = controller.Soap.GetAllPhysicalIos();
122137
PhysicalIoWriteResponse[] res = controller.Soap.WriteIos(new[] { "out1" }, new[] { 1.0 });
123138
```
124139

140+
![UnderAutomation Staubli communication SDK](https://raw.githubusercontent.com/underautomation/Staubli.NET/refs/heads/main/.github/assets/PhysicalIos.jpg)
141+
125142
---
126143

127144
### 📦 Application Management
@@ -136,6 +153,10 @@ ValApplication[] apps = controller.Soap.GetValApplications();
136153
controller.Soap.StopAndUnloadAll();
137154
```
138155

156+
157+
![UnderAutomation Staubli communication SDK](https://raw.githubusercontent.com/underautomation/Staubli.NET/refs/heads/main/.github/assets/ValApplications.jpg)
158+
159+
139160
---
140161

141162
### 🔁 Task Lifecycle

0 commit comments

Comments
 (0)