You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/franka.md
+28-9Lines changed: 28 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,19 +53,38 @@ ros2 run rosboard rosboard_node
53
53
54
54
Running the brick pickup demo can be done in the same way.
55
55
56
-
## Setup & FCI activation of pysical robot
57
56
58
-
First plug an ehternet cable into your laptop, and connect it to the control box's LAN port (this is not the LAN port on the arm itself).
59
-
Additionally, change your ethernet ipv4 settings to Manual and set the following:
60
-
Address: `172.16.0.1`\
61
-
Netmask: `255.255.255.0`
57
+
## Setup & FCI activation of physical robot
62
58
63
-

59
+
### Programmatic unlock via `.env`
60
+
61
+
You can unlock the robot automatically without using the browser by setting environment variables in a `.env` file at the root of your workspace:
62
+
63
+
```dotenv
64
+
# .env
65
+
FRANKA_HOSTNAME=your-hostname
66
+
FRANKA_USERNAME=your-username
67
+
FRANKA_PASSWORD=your-password
68
+
```
69
+
70
+
When you run the launch command, the robot will automatically unlock and activate the FCI.
71
+
72
+
This feature is based on the [jk-ethz/franka\_lock\_unlock](https://github.com/jk-ethz/franka_lock_unlock) repository. We maintain a fork with specific enhancements for our robot at [alliander-opensource/franka\_lock\_unlock](https://github.com/alliander-opensource/franka_lock_unlock.git).
73
+
74
+
### Manual unlock via web interface
75
+
76
+
You can also manually lock the robot via the web interface, plug an Ethernet cable from your laptop into the control box’s LAN port (this is not the LAN port on the arm itself). Additionally, change your Ethernet IPv4 settings to **Manual** and set the following:
77
+
78
+
```text
79
+
Address: 172.16.0.1
80
+
Netmask: 255.255.255.0
81
+
```
82
+
83
+

64
84
65
85
You may also want to consider making this a separate profile for future convenience when moving to different networks.
66
86
67
-
If the robot's power switch is turned on, you should now be able to go to [https://172.16.0.2](https://172.16.0.2).
68
-
Fill in the username and password, and click unlock.
69
-
After that, click `My Franka Robot> Activate FCI`. The robot is now ready to be controlled by the user, and the commands in quickstart can be run.
87
+
If the robot's power switch is turned on, you should now be able to go to [https://172.16.0.2](https://172.16.0.2).
88
+
Fill in the username and password, and click **Unlock**. After that, click **My Franka Robot → Activate FCI**. The robot is now ready to be controlled by the user, and the commands in Quickstart can be run.
0 commit comments