Search found 1017 matches

by fferri
01 Apr 2020, 13:50
Forum: General questions
Topic: Undergraduate Kilobot Course UoA
Replies: 4
Views: 1101

Re: Undergraduate Kilobot Course UoA

Hi,

I don't know the Kilobot robot. But if you want to keep that very same C programming interface, you can implement all the Kilobot API functions in C++ to use the CoppeliaSim remote API to affect the simulated kilobot model.

Have a look at Remote API
by fferri
01 Apr 2020, 13:39
Forum: General questions
Topic: Subscriber - ROS node
Replies: 4
Views: 896

Re: Subscriber - ROS node

Yes!
by fferri
31 Mar 2020, 16:39
Forum: General questions
Topic: How to add Delay in python script in simulation time
Replies: 9
Views: 2064

Re: How to add Delay in python script in simulation time

BlueZero needs the b0_resolver process to be running in order to function correctly. If b0_resolver is not found, it is launched by CoppeliaSim (those lines with [resolver] you see in the console). You can also try to kill the b0_resolver process (i.e. killall b0_resolver and see if it makes a diffe...
by fferri
31 Mar 2020, 16:22
Forum: General questions
Topic: open62541 OPC UA Client
Replies: 4
Views: 1414

Re: open62541 OPC UA Client

Yes! A plugin looks the right way to do it. The BlueZero (as well as CustomUI, OMPL, ROS, and many others) uses a high level framework (libPlugin) to generate Lua/C++ integration code. Documentation for it is just the README files contained in the git repository subdirectories, the example plugin si...
by fferri
31 Mar 2020, 08:47
Forum: General questions
Topic: How to adjust Lidar Data looks correct
Replies: 2
Views: 1001

Re: How to adjust Lidar Data looks correct

See components/sensors/Hokuyo_URG_04LG_UG01_ROS's sensing script for an example of reading lidar distances.

Check also this discussion.
by fferri
30 Mar 2020, 19:33
Forum: General questions
Topic: Develop plugin for Coppelia Sim using LibPlugin
Replies: 15
Views: 3324

Re: Develop plugin for Coppelia Sim using LibPlugin

Qt for Open Source development is free and available for all platforms.
by fferri
30 Mar 2020, 15:53
Forum: General questions
Topic: Dummy joint break apart
Replies: 3
Views: 839

Re: Dummy joint break apart

Mehmet wrote: 30 Mar 2020, 14:53 You can see in below link a part of my design,
coppelia wrote: 30 Mar 2020, 10:09 make sure you read the design considerations considerations 6-8 on the Designing dynamic simulations page.
Ditto
by fferri
27 Mar 2020, 11:19
Forum: General questions
Topic: How to parallelize a scene
Replies: 1
Views: 421

Re: How to parallelize a scene

Maybe it depends on the automatic name adjustment mechanism.

See Accessing objects programmatically (from associated code).
by fferri
26 Mar 2020, 08:46
Forum: General questions
Topic: Object handle error
Replies: 4
Views: 1081

Re: Object handle error

You say you have cubes with names Cube_1, Cube_2, Cube_3 ... Cube_100.

Your code will call sim.getObjectHandle with arguments Box0, Box1, Box2, ... Box100.

Does that ring a bell?