thecognifly.github.io

The CogniFly Project

CogniFly Logo

The CogniFly project’s purpose is ambitious: a unique platform for experimenting with autonomous flying robots. Using a bioinspired exoskeleton concept, our open source quadcopter combines lightweight with an unusual flexible frame. CogniFly is able to continue flying, even after a serious crash, thanks to its exceptional capacity of absorbing impact energy. Specially created to avoid the new limits for recreational RC aircraft heavier than 250 grams, our drone integrates a Raspberry Pi Zero W, Raspberry Pi Camera V2, and a Google’s AIY Vision Bonnet (powered by Intel Movidius), so it can perform computationally complex tasks such as image recognition on-the-fly. In addition to all that, CogniFly was specially designed allowing it to have its battery automatically swapped by a bespoke system.

Why did we decide to create yet another drone design?

It all started when the then MISTLab postdoctoral researcher, Ricardo de Azambuja, was awarded with the prestigious IVADO.ca (postdoctoral scholarship 2019/2020) for the project “High Fidelity Data Collection for Precision Agriculture with Drone Swarms”. That project was originally planning to employ off-the-shelf drones, more precisely the DJI Tello with the hope it would be possible to customize it and control a swarm using Buzz. However, as soon as the project started, it became clear we wanted a drone capable to be as autonomous as possible running Buzz internally, therefore, a drone that needed to be hooked to a laptop was not what we were aiming for. By the time the project started (March 2019), regulations in Canada would put harsh restrictions on drones above 250g. Moreover, we wanted an AI drone capable to run deep neural models (e.g. object detection) on-board because that was a main part of our initial proposal. Another reason to jump into the design of a totally new UAV was our dream of having an open-source design, under 250g that could be easily repaired or customized with a battery holder that would allow the battery to be automatically swapped.

Precision Agriculture with CogniFly

The CogniFly

CogniFly is based on small, lightweight off-the-shelf flight controllers (FC) that became very popular (and cheap!) thanks to the FPV drone community (and some massive hardware cloning). A FC is mainly responsible to keep the drone stable by calculating motor speed commands based on the data received from sensors like the IMU. Those commands, in the case of a quadcopter, go straight to the ESC that converts them into something that actually makes the motors spin accordingly. Some FCs (actually just by changing the firmware) are capable of following certain paths (waypoints) if they have an external positioning sensor (e.g. a GPS). However, a FC alone can not do much more than that and an external pilot needs to take a lot of decisions and send commands to the FC typically from a joystick-like device that transmits the commands commonly through radio signals. The external pilot doesn’t need to be a human being and, in fact, it doesn’t need to send commands through radio signals either (it could be through a cable). CogniFly uses a single-board computer (SBC), in this case a Raspberry Pi (RPI) Zero W, that pretends to be the external pilot.

The RPI sits on the top of the drone and it’s wired to the FC through its serial port (UART, to be more precise). In addition to the RPI, we also use a sensor that provides altitude (Time-of-Flight sensor) and relative odometry (optical flow sensor) allowing the FC to keep the drone in a fixed position thus transforming the pilot’s task into a high level one. Some extra nice advantages of using a RPI Zero W as the SBC is the huge community around it and easy access to WiFi and Bluetooth out of the box together with SPI, I2C, UART, PWM, etc. In order to allow the RPI to control the drone we developed a special Python3 library called YAMSPy that speaks the MultiWii protocol and can send commands and read information from a FC running iNAV or Betaflight.

By choosing to use a RPI as the SBC we openned up many possibilities for the AI side of this project because it’s very easy to interface external hardware to the RPI like the AI Vision Kit, Coral EdgeTPU USB Accelerator (or simply run TensorFlow Lite directly) and there’re already some examples available. After studying possible hardware accelerators for running inference on the edge that were small and lightweight enough (remember the 250g limit), we ended up with these three options: JeVois, Google AIY Vision Kit and Google Coral EdgeTPU USB. So far we have successfully tested Google’s AIY Vision Kit because it interfaces very nicely with the RPI Zero W, it gives us access to extra GPIO pins (with ADC and PWM) and even a crypto chip, but we have plans to test the other options in the near future (see this repo for EdgeTPU USB on the RPI Zero).

In addition to the electronic boards, battery, motors and propellers, a quadcopter needs a frame where all the parts are held together. Nowadays, the most common solution is a carbon fiber sheet that is machined to a certain shape (usually something resembling a ‘X’) with holes for connecting motors and the FC. However, our aim was to design a customizable frame that could be easily 3D printed by any small hobby grade machine (e.g. Tinyboy Education Project). The reason for that was to allow us to modify or fix the drone easily and iterate the design faster since we already had a small printer available (an MP Select Mini V2).

As the project progressed, we rapidly faced the fact that experimental drones crash a lot more than what we were used to when flying off-the-shelf ones. However, not only the frame needs to withstand daily (hourly…) crashes. An experimental design ideally requires some protection to propellers and other components to avoid breaking things each time an accident occurs. Additionally to protecting the more vulnerable parts from direct impacts, it’s necessary to avoid abrupt (de)acceleration during impacts because that stress can cause all sorts of components to fail prematurely too.

Nature probably had these problems during its evolutional design process. Bees are a cool example of nature’s design choices. YouTube is full of videos where bees crash land or simply hit each other while they are flying clearly without dying or breaking anything. We definitely are not the first ones to take notice of bees funny flying behaviours and, to be fair, the whole idea of being somehow soft while crashing seens to come from the 30’s. However, one stricking difference between what bees do and crumple zones is that bees come out intact from the incidents while crumple zones dissipate the energy by destroying themselves.

Our current design mixes soft and hard materials thus making CogniFly a drone capable of stunts that are quite unique while keeping its total weight just under 250g. Below is depicted the version used in the crash tests for our ICRA 2022 paper:

CogniFly

And here is CogniFly’s latest iteration: CogniFly

Collision Resilient

CogniFly Table Crash

Raspberry Pi Zero W and AI on-the-fly

AI On-The-Fly

Designed for Automatic Battery Swapping

CogniFly Battery Swapping

CogniFly Battery Slide

Videos!

ICRA 2022 Video Teaser:

CogniFly Video Teaser

ICRA 2022 Video Presentation:

CogniFly Video Teaser

Design evolution, or lessons learned

We went through many iterations before we found the sweet spot. The slideshow below shows since the very first design until the one using 3D printed flexible nets: Slideshow CogniFly Evolution

Publications

Acknowledgements

The CogniFly Project is built around many other succesful open-source projects starting by Linux itself. Therefore, it would be impossible to cite all projects here and we apologize beforehand because we are going, for sure, to forget to cite many: the flight controllers used in this project run iNAV or Betaflight (and those projects themselves only exist because there was a MultiWii project before them). The RPI Zero W image was based on the one supplied by Google AIY Projects. Many ideas for the code probably are from stackoverflow and inspiration to YAMSPy definitely came from my friend Aldo’s pyMultiWii. The PiDrone project and Pidrone (yup, same names!) also gave us a lot of inspiration since they were using RPI 3 to control drones. Thanks to the wonderful Raspiberry Pi Foundation we have an affordable and small single-board computer (the Raspberry Pi Zero W). Nowadays 3D printers are only accessible to so many people because of the RepRap project.

Many people from MISTLab helped during the development of this project, so a big thanks goes to the whole team.

Logo design by Daniele Sinhorelli.

This work was only possible thanks to the financial support from IVADO.ca (postdoctoral scholarship 2019/2020).


Media coverage (20/03/2021)