python is a parasite that overpowers ros in c++, hehehehe
@rv90splittergaming620 күн бұрын
Thanks! Good introduction
@deplorablesecuritydevicesАй бұрын
Very useful! Thank you.
@ToyExamplesАй бұрын
Thanks for great tutorial! I feel inspired to try to replicate it. Could you please advice: Q#1: What parameters of the system should be enough to run the whole stack - GCS, ardupilot and all the rest. And q#2: which operating systems you’d advise to use, just keep process smooth(reduce amount of troubleshooting during installation, etc)
@JosipMiller2 ай бұрын
Well, at least the future is secured for these birds especially when explosive unit is attached to it since it should be replaced after it hits the target. You do not need to build it to last long for obvious reasons, component manufacturers are happy since chips, sensors, motors, computer board, camera and battery are also burned with the device. :) Sweet deal. Even structural engineering is done with cable ties. See ? Easy !
@MariaAnderson-e4i2 ай бұрын
Hernandez Lisa Perez Linda Johnson Joseph
@DyslexicEngineer3 ай бұрын
Hello, its there any way of sending rc channel controls? To manually control the quad via a onboard raspberry pi for exemple?
@yancymuu49773 ай бұрын
Seems pygame no longer needed. Also can use Sony ps3 controller directly without dongle.
@meftun-u1n3 ай бұрын
Hello everyone, I am trying to connect gazebo iris drone with ardupilot pixhawk6c in hil mode by mavproxy. When I connected my pixhawk from mavproxy, it's okay but about gazebo there is issue for connecting. At the end, everything looks okay however my mavros commands are not sent to gazebo. Gazebo iris drone doesnt arm or takeoff. Please, Could you help me to connect pixhawk instead of SITL to gazebo.
@adarshas88274 ай бұрын
Can you please how are you moving the wamv boat autonomously (with propeller and rudder)? I'm using ROS2 Humble and wamv simulator.
@anikettambavekar48004 ай бұрын
My console is showing link is down. Did I miss something?
@Mhmmmmmmmmd4 ай бұрын
Hello my friend, I'm having a problem with my drone. I want help.
@munzirmahfud23824 ай бұрын
i have to design a boat like this for a project graduation can you help me?
@andreassebayang76494 ай бұрын
why i always failed when type git submodule update --init --recursive
@davidvelozee4 ай бұрын
I couldn’t get my controller to calibrate, and so I couldn’t use it. I resorted to using a mouse to double click where I wanted the drone to go. I did have to setup various string for MAVProxy to work properly.
@えーくっと4 ай бұрын
Would you make / update Ubuntu 22.04 installation guide for ROS-2 please? thank you.
@えーくっと4 ай бұрын
Hi, do you have updated installation for Ubuntu 22.04 for ROS 2 too? thank you.
@aankitdas65664 ай бұрын
is anyone else still getting this error? "ModuleNotFoundError: No module named 'imp'" ..and then when you edit context.py to latest package version of imp, you get a bunch of other errors?
@AliKerenciler4 ай бұрын
If you are having trouble with downloading python packages you can use the following code: sudo apt install python3-matplotlib python3-serial python3-wxgtk4.0 python3-lxml python3-scipy python3-opencv ccache gawk python3-pip python3-pexpect
@aankitdas65664 ай бұрын
but after doing this, arent you getting a module error in the context.py file? 'imp' not found. And then when you fix that by changing it to the latest package, importlib, you get another error that says none type doesn't have loader attribute or something like that. and then I am stuck
@YuriAchermann4 ай бұрын
Is there an updated tutorial using ROS2? With like ROS2 jazzy and Gazebo Harmonic?
@tomashobza4 ай бұрын
This video is pure gold. Very well done!
@jaydenthomas28424 ай бұрын
how can I get this to run on my physical flight controller and not a simulation?
@kameshnk83395 ай бұрын
How to do it in actual physical drones?
@Lyapunov235 ай бұрын
Hi, the boat is sink whatever I do. Is there any step I skip. Thank you.
@matejinjo5 ай бұрын
Hi, nice build, what battery are you using? And what is flight time (easy flying and hoovering)?
@Kemuras5 ай бұрын
what if we only have one "--out" SIM_VEHICLE:
@Kemuras5 ай бұрын
i tried running the .py file with the one "--out" host I had but it runs forever
@artupaysivar68845 ай бұрын
bro could you help me cuz I got stuck at 5:06, have no idea what arducopter is
@artupaysivar68845 ай бұрын
does that have something to do with ardupilot or px4 in the qgc firmware?
@Kemuras5 ай бұрын
@@artupaysivar6884 arducopter is a part of the ardupilot software. but specialized for multi-rotor craft. There's also Arduplane for fixed-wing. And Its been a while since I did that step but I think you need to clone the ardupilot repo from git hub
@Kemuras5 ай бұрын
github.com/ArduPilot/ardupilot
@tomashobza5 ай бұрын
You are a legend! I love how nice you put this subject, super hard to find documentation with such clarity and quality. Great work!
@fawwazyo91695 ай бұрын
i try following your step on installing ROS and MAVROS in raspberry pi 4, and when i try to install rosdep from SRC path, i got an error saying the following packages could not resolved, and it made catkin build failed, any solution pls?
@emirhansolak56105 ай бұрын
I want to ask a question, I write the same code, my terminal opens, then I type Heartbeat from the system (system 1, component 0) but the armed drone does not arm but if ı doing armed in qgc terminal In the terminal it says COMMAND_ACK {command: 400, result: 0, progress: 0, result_param2: 0, target_system: 255, target_component: 190}, what is the reason? my codes is bellow from pymavlink import mavutil # UDP üzerinden bağlantı başlatma the_connection = mavutil.mavlink_connection('udp:localhost:14445') # İlk heartbeat mesajını bekleyin the_connection.wait_heartbeat() # Bağlantının hedef sistem ve bileşen ID'sini alın print("Heartbeat from system (system %u component %u)" % (the_connection.target_system, the_connection.target_component)) # Drone'u ARM etmek için komut gönder the_connection.mav.command_long_send( the_connection.target_system, # Sistem numarası the_connection.target_component, # Komponent numarası mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM, # Komut türü (ARM veya DISARM) 0, # confirmation 1, # param1 (0: DISARM, 1: ARM) 0, 0, 0, 0, 0, 0 ) msg=the_connection.recv_match(type='COMMAND_ACK',blocking=True) print(msg)
@emirhansolak56105 ай бұрын
ı am using px4
@bsv45 ай бұрын
can we write this with ptyhon?
@muhammetsaityilmaaz5 ай бұрын
[darknet_ros-1] process has died [pid 22935, exit code -6, cmd /home/muhammet/ros_drone/devel/lib/darknet_ros/darknet_ros /webcam/image_raw:=/webcam/image_raw __name:=darknet_ros __log:=/home/muhammet/.ros/log/1d506764-3942-11ef-8ecb-137503854d7f/darknet_ros-1.log]. log file: /home/muhammet/.ros/log/1d506764-3942-11ef-8ecb-137503854d7f/darknet_ros-1*.log I encountered this error, can you help me?
@AkshaiyThinakaran-sg7cl5 ай бұрын
Is this executable for ROS 2 Humble using PX4 Sitl?
@BhaveshWalankar-n8w5 ай бұрын
Hello sir, Can i suppsoe to make a swarm of drones with the real drones using the algorithm and code you have mentioned in this playlist?
@sergiirizvan46696 ай бұрын
It would be great to release an update video about drone programming libraries in 2024.
@MuhammadSaad-sp8ui6 ай бұрын
How can we use reinforcement learning for UAV navigation with ros2?
@Rothammel16 ай бұрын
wow, try foxeer M10Q-120 with 2,7g an mLRS
@edfriesema42317 ай бұрын
Really interesting work. If we had a linux workstation could we run all of the ROS and ground control SIL exercises without the complete drone would a Pixhawk 6C be enough to get started with?
@mo-ug1ys7 ай бұрын
How to know when takeoff finished
@AerialWaviator7 ай бұрын
Great build. Use of the scripts is fascinating. Depending how the quad is tuned (PIDs) can effect how efficient the ESC/motors are operating. This a common reason motors to get warm. (ie: too responsive a control feedback loop repeatedly try to accelerate and slow the motors so faster than the blades can physically change speed, the result goes to heat) Flight log would provide insight.
@jkazi1227 ай бұрын
I've followed the tutorial and copied in the basic connection/listen script, but I notice that while mavutil is imported correctly and can make the connection, all the subsequent methods such as wait_heartbeat() come up as undefined by vscode. I've re-installed, restarted, added extensions, and inspected mavutil object, but can't seem to get vscode to recognize it. Any suggestions?
@thomassherif77977 ай бұрын
I was wondering, what is the mass of the iris drone + the camera. I am creating a controller that needs this info but can't find a definitive answer.
@armenkalaidjian44948 ай бұрын
GN745 has been discontinued.
@IntelligentQuads8 ай бұрын
I know 😢. I'm going to have to do an updated build. Maybe a little bigger. I want fpv on my next one
@armenkalaidjian44948 ай бұрын
@@IntelligentQuads goku hd745 evo maybe?
@ElMono195858 ай бұрын
Keep us posted dude! I would love a more updated version that's somewhat future proof.
@ElMono195858 ай бұрын
Also from your experience is there a small RTK module for a tiny whoop? Just trying to determine if a project idea I have is possible 😂
@IntelligentQuads8 ай бұрын
@@ElMono19585 I actually haven't used rtk in a project yet. I couldn't tell you if there was an RTK unit that would work with a whoop
@vigneshbalaji218 ай бұрын
Does this use the new gazebo / Ignition Gazebo ?
@birendrakumar-gl5gq8 ай бұрын
Any Plans for Ros 2?
@iamblessed33778 ай бұрын
Painful installation and setup. Appreciate your efforts but the problem is if any software version is slightly changed, things dont work. Typical problem with open source stuff, not well maintained stuff and guides which leads to frustation for the new developers. Been working on installing these stuff more than 2 days but no matter what - something wont work in the end. Thanks for your videos but ardupilot related platforms in generally suck when it comes to setup
@ais_robotic8 ай бұрын
plz sir,, make a tutorial for arduino mavlink
@A_50_VipulPardeshi8 ай бұрын
Please tell how to integrate flight stack with ROS2, you have playlist for ROS1 , PLS PLS
@ImStian8 ай бұрын
When I run the arm script I get an error saying: "Critical: Arm: Throttle too high" any tips on how get it to arm? (I'm running the simulator too)
@RawanElsayed-h5r9 ай бұрын
Hi, I am trying to run the SITL on my mac, but I am getting a lot errors related to missing libraries but they are already installed. Do you have a source/website that can help me run it on the mac smoothly? Can SITL even run on macOS? Thanks!
@Hazar-bt6nf9 ай бұрын
I have a question; is this series work for raspberry pi and pixhawk? When I run the code on raspberry pi, will it be working(assume that I have connected raspberry and pixhawk serially)?