ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I can recieve Unicode Message by above sequence.

in Publish Node: Original text [unicode] => text.encode('utf-8') [change to str] => publish

in Subscribe Node: subscribe => text=data.data [str] => text.decode('utf-8') [unicode]

Thanks!