Skip to content
Snippets Groups Projects
Commit e78b89fb authored by Gabriele Buondonno's avatar Gabriele Buondonno
Browse files

Fix ZMP estimator

parent d23a79a1
Branches
Tags
No related merge requests found
......@@ -408,9 +408,8 @@ def create_zmp_estimator(robot):
estimator = SimpleZmpEstimator("zmpEst")
plug(robot.dynamic.LF,estimator.poseLeft)
plug(robot.dynamic.RF,estimator.poseRight)
# force sensors are not mapped correctly
plug(robot.device.forceRLEG,estimator.wrenchLeft)
plug(robot.device.forceRARM,estimator.wrenchRight)
plug(robot.device.forceLLEG,estimator.wrenchLeft)
plug(robot.device.forceRLEG,estimator.wrenchRight)
estimator.init()
return estimator
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment