You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i use roslibjs to send a action goal ,rosbridge-suit gets an error and tried to find action interface in the msg packages.
action(serverName,actionName,argument){constrosAction=newROSLIB.ActionClient({ros: this.ros,serverName: serverName,actionName: actionName})constgoal=newROSLIB.Goal({actionClient: rosAction,goalMessage: argument});// Print out their output into the terminal.goal.on('feedback',function(feedback){console.log('Feedback: '+feedback.sequence);});goal.on('result',function(result){console.log('Final Result: '+result.sequence);});goal.send()}
And I tried to use python to send the action, and I got the same error
Description
Steps To Reproduce
when i use roslibjs to send a action goal ,rosbridge-suit gets an error and tried to find action interface in the msg packages.
And I tried to use python to send the action, and I got the same error
The text was updated successfully, but these errors were encountered: