Search found 1028 matches

by fferri
01 Jun 2017, 08:55
Forum: Bug reports
Topic: Update links to beta version
Replies: 4
Views: 3147

Re: Update links to beta version

or checkout a previous version. a version of a month ago will work with older V-REP.
by fferri
29 May 2017, 14:56
Forum: Bug reports
Topic: V-REP crashes on ros interface
Replies: 7
Views: 6769

Re: V-REP crashes on ros interface

I could not reproduce your problem. Can you confirm that V-REP does crash by putting this code in an object's script? if (sim_call_type==sim_childscriptcall_initialization) then pub=simROS.advertise('/test','std_msgs/Float32') end if (sim_call_type==sim_childscriptcall_actuation) then simROS.publish...
by fferri
13 Mar 2017, 10:26
Forum: Feature requests
Topic: V-Rep should publish to the /clock topic
Replies: 19
Views: 29291

Re: V-Rep should publish to the /clock topic

This may be related https://github.com/ros/ros_comm/issues/176 from dirk-thomas : This is a fundamental design choice of ROS and not "fixable". The connections between nodes happens after each node is started so messages can get lost until all these connections are made. You should design ...
by fferri
09 Jan 2017, 17:31
Forum: General questions
Topic: Making frontier in V-rep environment.
Replies: 5
Views: 1939

Re: Making frontier in V-rep environment.

Hi Saad,

can you explain what a frontier is?
by fferri
09 Jan 2017, 11:56
Forum: Feature requests
Topic: V-Rep should publish to the /clock topic
Replies: 19
Views: 29291

Re: V-Rep should publish to the /clock topic

The parameter name is /use_sim_time, and it must be set to true before other nodes are initialized.

See http://wiki.ros.org/Clock for details.
by fferri
06 Jan 2017, 13:53
Forum: Feature requests
Topic: V-Rep should publish to the /clock topic
Replies: 19
Views: 29291

Re: V-Rep should publish to the /clock topic

What have you tried? Which problem have you got?
by fferri
15 Dec 2016, 10:00
Forum: Feature requests
Topic: SDF Import Plugin
Replies: 3
Views: 7361

Re: SDF Import Plugin

You can see a sort of log of import operations by recompiling the plugin with debug information (i.e. qmake v_repExtSDF.pro followed by make debug).

The convex decomposition dialog option is not currently used.

The inertial information is actually imported (check v_repExtSDF.cpp line 758).
by fferri
03 Dec 2016, 12:11
Forum: General questions
Topic: RosInterface custom message
Replies: 2
Views: 2925

Re: RosInterface custom message

Yes, you have to add the msg package as a dependency of vrep_ros_interface as well.
by fferri
24 Nov 2016, 20:36
Forum: Bug reports
Topic: rosInterfacePublishService bug
Replies: 3
Views: 4067

Re: rosInterfacePublishService bug

For the record, the meaning of "malformed table (bad key type)" is that a string key was expected when reading a Lua table (the ROS message), but something else was found (e.g. a float). For example, a table such as {10,20} or {1=10,2=20} would raise such exception, while {a=10,b=20} would...
by fferri
24 Nov 2016, 20:30
Forum: Bug reports
Topic: rosInterfacePublishService bug
Replies: 3
Views: 4067

Re: rosInterfacePublishService bug

Hello Tobias, is your problem reproducible also with following code? function cb(req) local data='blablablabla' local w=2 local h=2 d={} d['header']={seq=1,stamp=0,frame_id="a"} d['height']=h d['width']=w d['encoding']='rgb8' d['is_bigendian']=1 d['step']=w*3 d['data']=data res = {} res['i...