Search found 632 matches

Go to advanced search

by pincy
Sat Jan 08, 2022 9:15 pm
Forum: How to... ?
Topic: No package 'argos3_simulator' found
Replies: 21
Views: 33156

Re: No package 'argos3_simulator' found

The entire history of the ARGoS releases is available on Github, so the answer is yes. I don't know which specific version is compatible, you should ask the author of the repository. Or, maybe better, you should ask the author of the repository to modernize it, so it's compatible with the current ve...
by pincy
Sat Jan 08, 2022 5:52 pm
Forum: How to... ?
Topic: No package 'argos3_simulator' found
Replies: 21
Views: 33156

Re: No package 'argos3_simulator' found

The correct location for the kilobot plugin is here:

https://github.com/ilpincy/argos3-kilobot

It looks like you downloaded a fork made by another user, and the user didn't keep the fork up-to-date with the original package. The repository you're using has not been updated in the past 2 years.
by pincy
Sat Jan 08, 2022 12:45 am
Forum: How to... ?
Topic: error: unknown type name ‘namespace’
Replies: 1
Views: 14441

Re: error: unknown type name ‘namespace’

This is not a bug. The header you're trying to use is meant to be used with ARGoS controllers, which are written in C++. Instead, you're working with the C wrapper of the kilobot, which is written in C and had nothing to do with ARGoS controllers. Kilobots don't have the means to know their position...
by pincy
Fri Jan 07, 2022 5:35 pm
Forum: How to... ?
Topic: Symbol "kilobot" not found
Replies: 8
Views: 9837

Re: Symbol "kilobot" not found

Well, then copy the files over and remove them... :-)
I hope the point is clear: the files are in the wrong place.
by pincy
Fri Jan 07, 2022 4:53 pm
Forum: How to... ?
Topic: Symbol "kilobot" not found
Replies: 8
Views: 9837

Re: Symbol "kilobot" not found

OK so the problem is due to the fact that ARGoS is installed in /usr/lib/argos3, but the kilobot plugin is installed in /usr/local/lib/argos3. Two possible solutions: sudo mv /usr/local/lib/argos3 /usr/lib or rm -rf /usr/local/lib/argos3 cd argos3-kilobot rm -rf build mkdir build cmake -DCMAKE_BUILD...
by pincy
Fri Jan 07, 2022 4:23 pm
Forum: How to... ?
Topic: Symbol "kilobot" not found
Replies: 8
Views: 9837

Re: Symbol "kilobot" not found

Maybe your installation is not correct. What's the output of the following commands:

Code: Select all

which argos3 ls /usr/local/lib/argos3 ls /usr/local/bin/argos3 ls /usr/lib/argos3 ls /usr/bin/argos3
by pincy
Fri Jan 07, 2022 2:40 pm
Forum: How to... ?
Topic: Symbol "kilobot" not found
Replies: 8
Views: 9837

Re: Symbol "kilobot" not found

You need to install the kilobot plugin with make install.
by pincy
Thu Jan 06, 2022 7:34 pm
Forum: How to... ?
Topic: Is there a way to autostop the qt-user GUI?
Replies: 3
Views: 6523

Re: Is there a way to autostop the qt-user GUI?

You can use the Qt API to close the main window; that will automatically call the necessary ARGoS functions to cleanup and close.
by pincy
Thu Jan 06, 2022 6:01 pm
Forum: How to... ?
Topic: GetX and GetY of Kilobot
Replies: 1
Views: 5077

Re: GetX and GetY of Kilobot

I know of the existence of ARK, but I don't know anything about its internals. I would suggest you to contact the original developers.
by pincy
Thu Jan 06, 2022 9:45 am
Forum: How to... ?
Topic: linkage error when trying to run argos3
Replies: 18
Views: 21524

Re: linkage error when trying to run argos3

Great! Then you probably had old stuff in the build folder from previous attempts.

Go to advanced search