Replies: 1 comment 1 reply
-
|
The VDA5050 driver does not include actions in order messages for nodes and edges that are part of the horizon / not yet part of the base. Once the node "Point-0026" is released (i.e. becomes part of the base), the action should also be contained in the node. Also, the key of the destination property is not correct. It should be |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
So im able to use the driver for vda5050 and send orders and instant actions using the ui from the kernelControlCenter but when i try to send a transport order using the ui from operations desk the order sends only the nodes without any action, y try using the rest api for the order adding the corresponding properties and in the location enabling the correct action to perform but is sending the same nodes without the action in it.
This is my transport order
{
"intendedVehicle":"Vehicle-01",
"deadline":"2025-05-22T08:45:40.396Z",
"destinations": [
{
"locationName": "Goods in north 01",
"operation": "drop",
"properties":[
{
"key": "vda5050:destinationAction.drop.parameter.lhd",
"value": "awqwq"
}
]
}
]
}
This is the mqtt order publish for the corresponding node that should use the drop action but it doesnt contain it {
"nodeId" : "Point-0026",
"sequenceId" : 26,
"released" : false,
"actions" : [ ],
"nodePosition" : {
"x" : -24.0,
"y" : 11.0,
"mapId" : ""
}
} ],
Im using the example model Demo.xml and using the Goods in north 01 adding the drop action, so im wondering what im doing wrong
Beta Was this translation helpful? Give feedback.
All reactions