Skip to content

Commit

Permalink
added one link deformation message for each wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzucchi committed May 16, 2024
1 parent 6b5f68c commit 0921866
Showing 1 changed file with 68 additions and 2 deletions.
70 changes: 68 additions & 2 deletions networks/secondary/network.json
Original file line number Diff line number Diff line change
Expand Up @@ -1987,14 +1987,80 @@
}
},
{
"name": "LINK_DEFORMATION",
"name": "LINK_DEFORMATION_FL_WHEEL",
"topic": "HYDRA",
"priority": 3,
"sending": [
"ACQUISINATOR"
],
"receiving": [],
"description": "Message for the arm deformation",
"description": "Message for the arm deformation for the front left wheel",
"interval": 10,
"contents": {
"rod_id": "uint8",
"deformation": {
"type": "float32",
"range": [
-3.0,
3.0
],
"force": "uint32"
}
}
},
{
"name": "LINK_DEFORMATION_FR_WHEEL",
"topic": "HYDRA",
"priority": 3,
"sending": [
"ACQUISINATOR"
],
"receiving": [],
"description": "Message for the arm deformation for the front right wheel",
"interval": 10,
"contents": {
"rod_id": "uint8",
"deformation": {
"type": "float32",
"range": [
-3.0,
3.0
],
"force": "uint32"
}
}
},
{
"name": "LINK_DEFORMATION_RL_WHEEL",
"topic": "HYDRA",
"priority": 3,
"sending": [
"ACQUISINATOR"
],
"receiving": [],
"description": "Message for the arm deformation for the rear left wheel",
"interval": 10,
"contents": {
"rod_id": "uint8",
"deformation": {
"type": "float32",
"range": [
-3.0,
3.0
],
"force": "uint32"
}
}
},
{
"name": "LINK_DEFORMATION_RR_WHEEL",
"topic": "HYDRA",
"priority": 3,
"sending": [
"ACQUISINATOR"
],
"receiving": [],
"description": "Message for the arm deformation for the rear right wheel",
"interval": 10,
"contents": {
"rod_id": "uint8",
Expand Down

0 comments on commit 0921866

Please sign in to comment.