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
I want to subscribe to the JointTrajectoryPoint topic /right_arm, extract the first item from the positions, convert it from a double to an int32_t, and then publish it to the topic /right_arm_2.
I am using the ESP-WROOM-32 board, and the INI file is shown below:
We can see the /right_arm_2 topic being published, but it contains no values.
Additionally, if we use xTaskCreatePinnedToCore() in the setup() section and then delete the rosSubscriptionTaskFunction() in the loop() section, the node fails to initialize correctly. As a result, there is no output in the Micro-ROS agent.
How can these issues be resolved?
The text was updated successfully, but these errors were encountered:
Hi there,
I want to subscribe to the
JointTrajectoryPoint
topic/right_arm
, extract the first item from the positions, convert it from adouble
to anint32_t
, and then publish it to the topic/right_arm_2
.I am using the ESP-WROOM-32 board, and the INI file is shown below:
The
main.cpp
code is shown below:Here is an example message for the
/right_arm
topic:We can see the
/right_arm_2
topic being published, but it contains no values.Additionally, if we use
xTaskCreatePinnedToCore()
in thesetup()
section and then delete therosSubscriptionTaskFunction()
in theloop()
section, the node fails to initialize correctly. As a result, there is no output in the Micro-ROS agent.How can these issues be resolved?
The text was updated successfully, but these errors were encountered: