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 got the answer,

^[A-Z]

Means upper case letter, and

^[A-Za-z0-9]

Means upper case letter followed by lower case letters or numbers. Thus, my message name was wrong because I was using

'testMsg'

Which does not starts with a capitol letter. This problem was solved just by writing:

'TestMsg'