Communication between ROS and wxWidgets
What's the best way of sending and receiving ROS messages to and from a wxWidgets GUI in C++? I have a GUI that should be updated with status of some ROS nodes and I want to be able to send some ROS messages to ROS nodes when a button is clicked i the GUI (or similar).
I have tried to make wxApp as a ROS node and update the GUI when a ROS message is received, but it does not work (some problems with threads).
There must be a 'default' way of communicating with other C++ programs in a wxWidgets GUI?