A screenshot of the drone monitoring application, showing spoofed drones and their coordinates

Can’t Disable DJI Drone ID? Spoof It With An ESP!

We have been alerted to a fun tool, a DJI DroneID spoofer software for ESP8266/ESP32 and some other popular MCUs. Last year, we’ve told you about DJI DroneID — a technology DJI added to their drones, which broadcasts data including the drone operator’s GPS position, which, in turn, appears to have resulted in Ukrainian casualties in the Ukraine war. The announcement tweet states that DJI has added mechanisms from downgrading firmware. Hence, the spoofer.

There’s no other hardware needed, well other than an ESP8266 or ESP32 devboard, anyway. After the break you can find a video tutorial from [Joshua Bardwell] that shows you how to upload the code using Arduino IDE, and even going through coordinate tweaks. If you ever reminisced about the concept of throwies and were wondering what kind of useful, well, there’s your answer: clone the Git repo, compile it, program some interesting coordinates in, and witness the imaginary drones fly.

All in all, we get a lovely addition to our shenanigan toolkits. Surely, someone could use a neural network to distinguish real drones from fake ones, but it’s nothing that can’t be solved with a bit of code. Looking for a less daring hack? Well, you can always add some automation to your DJI drone by poking at the RGB LED signals.

Continue reading “Can’t Disable DJI Drone ID? Spoof It With An ESP!”

Extreme Waterproof 3D Prints

Since the crew at [CPSdrone] likes to build underwater drones — submarines, in other words — they need to 3D print waterproof hulls. At first, they thought there were several reasons for water entering the hulls, but the real reason was that water tends to soak through the print surface. They’ve worked it all out in the video below.

Since the printer is an FDM printer, it isn’t surprising that the surface has tiny pores; even the tiniest pores will let water in at high pressure. They tried using epoxy to seal the prints, which worked to some degree. They did tests using an example submersible hull that you can try yourself if you like.

Continue reading “Extreme Waterproof 3D Prints”

A Deep Dive Into Quadcopter Controls

In the old days, building a quadcopter or drone required a lot of hacking together of various components from the motors to the batteries and even the control software. Not so much anymore, with quadcopters of all sizes ready to go literally out-of-the-box. While this has resulted in a number of knock-on effects such as FAA regulations for drone pilots, it’s also let us disconnect a little bit from the more interesting control systems these unique aircraft have. A group at Cornell wanted to take a closer look into the control systems for drones and built this one-dimensional quadcopter to experiment with.

The drone is only capable of flying in one dimension to allow the project to more easily fit into the four-week schedule of the class, so it’s restricted to travel along a vertical rod (which also improves the safety of the lab).  The drone knows its current position using an on-board IMU and can be commanded to move to a different position, but it first has to calculate the movements it needs to make as well as making use of a PID control system to make its movements as smooth as possible. The movements are translated into commands to the individual propellers which get their power from a circuit designed from scratch for this build.

All of the components of the project were built specifically for this drone, including the drone platform itself which was 3D printed to hold the microcontroller, motors, and accommodate the rod that allows it to travel up and down. There were some challenges such as having to move the microcontroller off of the platform and boosting the current-handling capacity of the power supply to the motors. Controlling quadcopters, even in just one dimension, is a complex topic when building everything from the ground up, but this guide goes some more of the details of PID controllers and how they help quadcopters maintain their position.

Continue reading “A Deep Dive Into Quadcopter Controls”

Mega-CNC Router Carves Styrofoam Into A Full-Size Flying Delorean

When you own an enormous CNC router, you’ve got to find projects that justify it. So why not shoot for the sky — literally — and build the 1980s-est possible thing: a full-scale flying Delorean.

Attentive readers will no doubt remember [Brian Brocken] from his recent attempt to bring a welding robot out of retirement. That worked quite well, and equipped with a high-speed spindle, the giant ABB robot is now one of the biggest CNC routers we’ve ever seen. As for the flying Delorean, short of the well-known Mr. Fusion mod, [Brian] had to settle for less fictional approaches. The project is still in its early phase, but it appears that the flying car will basically be a huge quadcopter, with motors and propellers hidden under the chassis. That of course means eschewing the stainless steel of the OEM design for something lighter: expanded polystyrene foam (EPS).

The video below shows the fabrication of most of the body, which starts as large blocks of EPS and ends up as shaped panels and an unthinkable amount of dust. Individual pieces are glued together with what looks like plain old PVA adhesive. The standard Delorean “frunk” has been replaced by a louvered assembly that will act as an air intake; we presume the rear engine cover will get the same treatment. Interestingly, the weight of the finished model is almost exactly what Fusion 360 predicted based on the 3D model — a mere 13.9 kg.

[Brian] is currently thrust-testing motors and propellers and has some interesting details on that process in his write-up. There’s obviously a lot of work left on this project, and a lot more dust to be made, and we’ll be eagerly following along. Continue reading “Mega-CNC Router Carves Styrofoam Into A Full-Size Flying Delorean”

Drone Motion Capture, The Open Source Way

If you want to do some really advanced flying with drones, you typically need to be able to track them in space. [Joshua Bird] has whipped up a drone tracking system that can do the job for as little as $20 with millimeter-scale precision.

The system uses four PS3 Eye cameras which can be had second-hand at a cost of just $5 each. They’re modified by removing their IR cut filter, and putting in an IR-passing filter in the form of a cut-up slice of floppy disk. The system tracks the drones via their infrared indicators and the known locations of the four cameras themselves, which the system is capable of mapping out automatically. By using four cameras, the system is robust in the event the view of a camera is occluded. The system can track multiple drones at the same time, with [Joshua] demonstrating it working with two drones each carrying three infrared markers. He has the system set up to send positional updates to ESP32 microcontrollers on the drones themselves, which command the drones to hold them in set positions.

Code is available on GitHub for the curious. We’ve seen other similar work before, too.

Continue reading “Drone Motion Capture, The Open Source Way”

Variable-Nozzle Ducted Fan Provides Fluid Dynamics Lessons

Any student new to the principles of fluid dynamics will be familiar with Bernoulli’s principle and the Venturi effect, where the speed of a liquid or gas increases when the size of the conduit it flows through decreases. When applying this principle to real-world applications, though, it can get a bit more complex than a student may learn about at first, mostly due to the shortcomings of tangible objects when compared to their textbook ideals. [Mech Ninja] discovered this while developing a ducted fan based around an RC motor.

The ducted fan is meant to be a stand-in for a model jet engine, based around a high-powered motor generally designed for drone racing. Most of the build is 3D printed including duct system, but in order to improve the efficiency and thrust beyond simple ducting, [Mech Ninja] designed and built a variable nozzle to more finely control the “exhaust” of his engine. This system is also 3D printed and can restrict or open up the outflow of the ducted fan, much like a real jet engine would. It uses two servos connected to collars on the outside of the engine. When the servos move the collars, a set of flaps linked to the collars can choke or expand the opening at the rear of the engine.

This is where some of the complexity of real-life designs comes into play, though. After testing the system with a load cell under a few different scenarios, the efficiency and thrust weren’t always better than the original design without the variable nozzle. [Mech Ninja] suspects that this is due to the gaps between the flaps, allowing air to escape and disrupting the efficient laminar flow of the air leaving the fan, and plans to build an improved version in the future. Fluid dynamics can be a fairly complex arena to design within, sometimes going in surprising directions like this ducted fan that turned out better than the theory would have predicted, at least until they accounted for all the variables in the design.

Continue reading “Variable-Nozzle Ducted Fan Provides Fluid Dynamics Lessons”

Stretching The Flight Time On A Compressed Air Plane

[Tom Stanton] has been experimenting with compressed air motors on model aircraft for a good few years, but keeping them aloft (and intact) for more than a few seconds has proven a tough nut to crack. His latest design represents a breakthrough — pulling off an impressive 1 minute and 26 seconds flight on 4 liters of compressed air.

The model incorporates an enhanced engine design featuring an expanding seal on the piston, a concept inspired by the old Air Hogs toy plane. For the airframe, he constructed lightweight wings using 3D printed ABS ribs on a carbon spar and reinforcing rods, all of which were wrapped in heat shrink film. Additionally, [Tom] incorporated a thin balsa former along the leading edge of the wing to help maintain its shape. The fuselage is also composed of a carbon fiber tube, and is outfitted with printed fittings to install the wings, V-tail, RC electronics, and soda/air bottles. A hollow nylon bolt holds the two bottles together end-to-end while allowing the motor to be screwed directly onto the front bottle. To conserve weight, each of the two V-tail control surfaces are actuated by single cables linked to servos, with piano wire torsion springs in the hinges to maintain tension

Despite successful flights, [Tom]’s trials were not without challenges. One crash threatened severe damage to his airframe, but thanks to a central 3D printed bracket that absorbed most of the impact, total destruction was avoided. Similarly, a printed shaft saved his expensive carbon fiber propeller from being damaged during multiple landings, an outcome that led [Tom] to devise a readily replaceable consumable connector.

A second video after the break offers a behind-the-scenes insights into this project including some fascinating technical details. For more on this project’s history, take a look at the initial diaphragm engines and his attempts to make them fly.

Continue reading “Stretching The Flight Time On A Compressed Air Plane”