Search found 5 matches

by aashisht97
Wed Jul 05, 2017 10:11 am
Forum: Bitcraze
Topic: Communication between 2 crazyflies
Replies: 1
Views: 1808

Communication between 2 crazyflies

Hello everyone!! I am trying to obtain communication between two crazyflies (Crazyflie 2.0) so as to fly them together. I went through multi_hover_vrpn.launch and multi_waypoint_vrpn.launch . However in both cases, we are separately required to give waypoints/ goal coordinates to each quadrotor. I w...
by aashisht97
Fri Jun 30, 2017 10:42 am
Forum: Bitcraze
Topic: ROS
Replies: 3
Views: 3146

ROS

I am unable to understand various aspects of the following code (the code is a part of crazyflie_ros package). I have posted various questions as seen below: #include <ros/ros.h> #include <tf/transform_listener.h> #include <std_srvs/Empty.h> #include <geometry_msgs/Twist.h> #include "pid.hpp&qu...
by aashisht97
Fri Jun 30, 2017 8:55 am
Forum: Bitcraze
Topic: [SOLVED]ROS
Replies: 5
Views: 3539

Re: ROS

Thanks a tonne for the information. I am actually trying to use a package "crazyflie_ros" and trying to understand the various files written in it. The code I pasted was one of them and I was curious to know what it actually meant. I would soon try to use crazyswarm as well!
by aashisht97
Thu Jun 29, 2017 9:55 am
Forum: Bitcraze
Topic: [SOLVED]ROS
Replies: 5
Views: 3539

Re: ROS

@arnaud My end goal is to fly the crazyflie autonomously over a desired track (trajectory tracking). I am trying to understand the logic behind the PID controller algorithm being used (for eg, how is the error being reduced, how is feedback being obtained etc.) What is the need to check that the lis...
by aashisht97
Fri Jun 23, 2017 9:44 pm
Forum: Bitcraze
Topic: [SOLVED]ROS
Replies: 5
Views: 3539

[SOLVED]ROS

The following is a piece of code from crazyflie_ros package (crazyflie_add.cpp): std::vector<std::string> genericLogTopics; n.param("genericLogTopics", genericLogTopics, std::vector<std::string>()); std::vector<int> genericLogTopicFrequencies; n.param("genericLogTopicFrequencies"...