-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
single_pendulum: Remove deprecated constructs from configuration files
- Loading branch information
1 parent
5bf1755
commit f1ec0f2
Showing
2 changed files
with
27 additions
and
11 deletions.
There are no files selected for viewing
36 changes: 26 additions & 10 deletions
36
tutorial/model/single_pendulum/conf/gazebo_controlboard.ini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,30 @@ | ||
disableImplicitNetworkWrapper | ||
yarpDeviceName controlboard_plugin_device | ||
jointNames joint | ||
jointNames (joint) | ||
|
||
#PIDs: | ||
# this information is used to set the PID values in simulation for GAZEBO, we need only the first three values | ||
[GAZEBO_PIDS] | ||
#Torso | ||
Pid0 1000.0 2.0 0.1 9999 9999 9 9 | ||
|
||
[GAZEBO_VELOCITY_PIDS] | ||
#Torso | ||
Pid0 500.0 2.0 0.1 9999 9999 9 9 | ||
[POSITION_CONTROL] | ||
controlUnits metric_units | ||
controlLaw joint_pid_gazebo_v1 | ||
kp (1000.0) | ||
kd (2.0) | ||
ki (0.1) | ||
maxInt (9999) | ||
maxOutput (9999) | ||
shift (0.0) | ||
ko (0.0) | ||
stictionUp (0.0) | ||
stictionDwn (0.0) | ||
|
||
[VELOCITY_CONTROL] | ||
controlUnits metric_units | ||
controlLaw joint_pid_gazebo_v1 | ||
velocityControlImplementationType integrator_and_position_pid | ||
kp (500.0) | ||
kd (2.0) | ||
ki (0.1) | ||
maxInt (9999) | ||
maxOutput (9999) | ||
shift (0.0) | ||
ko (0.0) | ||
stictionUp (0.0) | ||
stictionDwn (0.0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters