Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
talos_integration_tests
Commits
d0acc1ec
Commit
d0acc1ec
authored
Oct 01, 2020
by
Guilhem Saurel
Browse files
fix numpy array constructor
parent
e2301a79
Changes
1
Show whitespace changes
Inline
Side-by-side
scripts/test_online_walking.py
View file @
d0acc1ec
...
...
@@ -78,11 +78,11 @@ print('Executing the trajectory')
handleRunCommandClient
(
'robot.triggerPG.sin.value = 1'
)
time
.
sleep
(
4
)
handleRunCommandClient
(
'robot.pg.velocitydes.value=np.array(0.2,0.0,0.0)'
)
handleRunCommandClient
(
'robot.pg.velocitydes.value=np.array(
(
0.2,0.0,0.0)
)
'
)
time
.
sleep
(
7
)
handleRunCommandClient
(
'robot.pg.velocitydes.value=np.array(0.3,0.0,0.0)'
)
handleRunCommandClient
(
'robot.pg.velocitydes.value=np.array(
(
0.3,0.0,0.0)
)
'
)
time
.
sleep
(
9
)
handleRunCommandClient
(
'robot.pg.velocitydes.value=np.array(0.0,0.0,0.0)'
)
handleRunCommandClient
(
'robot.pg.velocitydes.value=np.array(
(
0.0,0.0,0.0)
)
'
)
time
.
sleep
(
9
)
handleRunCommandClient
(
'from sot_talos_balance.create_entities_utils import dump_tracer'
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment