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

(About roseus) How can I know about member functions and keyword arguments?

asked 2014-12-02 20:18:05 -0500

Kaori Furuike gravatar image

Hello,

I have a question about roseus. In a sample program, there are arguments like
(ros::roseus ... )
(ros::advertise-service ... )

But how can I get the information about the member functions (and keyword arguments) ?
Or where are these defined ?
This is the example of the sample program.

#!/usr/bin/env roseus

(ros::load-ros-manifest "roseus")
(ros::roseus "talker")
(ros::advertise "chatter" std_msgs::string 1)
(ros::rate 100)
(while (ros::ok)
  (setq msg (instance std_msgs::string :init))
  (send msg :data (format nil "hello world ~a" (send (ros::time-now) :sec-nsec)))
  (ros::ros-info "msg [~A]" (send msg :data))
  (ros::publish "chatter" msg)
  (ros::sleep)
)
(ros::roseus "shutdown")
(exit)
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2014-12-04 18:03:37 -0500

Kei Okada gravatar image

Sorry that currently is is not documented yet, so please refer to https://github.com/jsk-ros-pkg/jsk_ro... for example

edit flag offensive delete link more

Comments

OK. Thank you for your reply.

Kaori Furuike gravatar image Kaori Furuike  ( 2014-12-04 19:17:06 -0500 )edit

Question Tools

Stats

Asked: 2014-12-02 20:18:05 -0500

Seen: 104 times

Last updated: Dec 04 '14

Related questions