I recently purchased an RX5808 Pro Diversity FPV receiver and wanted to mount it on my FPV box-style goggles in a manner that didn't just involve a metric ton of double-sided tape. I've been interested in 3D printing for a long time, but the cost for a "turnkey" 3D printer has remained just out of reach. On top of this I hadn't done any 3D modelling since my Year 12 CAD class over fifteen years ago.
Thankfully, that first problem can be resolved by places like Shapeways and the second by a truly awesome program called OpenSCAD - a programming-driven 3D modeller. A day's furious measuring and coding, followed by two weeks delivery time from the US of A and look what arrived:
Even better, it works:
I've tweaked the control slot a touch since these photos, so if you just want the STL file, it's in my drones repository, or you can support me by purchasing it from my Shapeways shop.
I've been experimenting with some basic computer vision concepts on a Raspberry Pi as part of a small mobile robot project. Fundamental to this was getting OpenCV compiled and set up in Python, a process that took 5 or 6 tries over the majority of my Christmas/New Year break. Hopefully this guide will save you some proportion of that time when you have a go at it...
Assumptions
I'm working off the assumption that you are using Python 3.5 and are working within an activated virtual environment for your project. I am also going to use "~/myproject" as a stand in for your specific project path. This means you will have already done something like:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You need to stay in that activated virtual environment for the duration of this guide. Caveats
This install will be missing ffmpeg due to a bug in the current version.
Virtual memory
I needed to add more virtual memory to get this to work, using the following steps:
Change swap size to 1 GB temporarily by setting CONF_SWAPSIZE to 1024 in:
Installation
Now, the fun part. These are the steps you need to run, in order. The 'make' step will take 6-ish hours so is a good candidate for leaving overnight.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Virtual memory - again
It is important that you undo the virtual memory change above or you will risk corrupting you SD card. Just revert the value to 100 and start and stop the service.
From here you should be able to import 'cv2' from within the virtual environment's Python, and get on with actual development :)
This guide couldn't have been made without the efforts of:
I've got a new hobby! A couple of months ago I purchased my first FPV drone, the entry level Eachine QX95.
This glorious little machine came with a Betaflight-compatible flight controller, and I've since learnt how to build the ARM-targeted firmware (a first for me) after adding a software failsafe.
I'd played with an FPV camera on a basic toy drone before but this is my first foray into a FPV-specific drone. So far I've been learning fairly quickly
And then I pranged it.
Which became the perfect opportunity to build my first drone "frame", out of old NERF rounds and hot glue :)
The aptly-named Pink Rocket flies suspiciously well, though it's a touch docile compared to the original due to all the wind resistance from the cross-sectional area. It'll certainly do until the replacement frame arrives.
I recently had a scenario with my Raspberry Pi (Zero, running Raspbian) where I needed to temporarily switch away from the primary Wi-Fi connection to another access point (to drive a camera) then reconnect to my original network. Turns out wpa_cli can do the trick:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The best thing about this approach is that it is non-persistent, so if it all goes horrible wrong you get your original networking configuration back upon reboot.
A while ago I was bloggingabout GenghisIO - a project with the goal of removing all the mess involved in programming a small range of real-world robots - the IDE, drivers, cables etc etc.
The project eventually stalled due to increasing complexity and decreasing resources (time...) but quite a few neat problems were solved along the way - so I have open sourced it!
If you're interested in using Google App Engine applications, Python Flask with WebSockets, empythoned, Python QR code generation, Android WebViews and JavaScript -> Bluetooth communication then go and have a look.
I'd love to hear from you below if you find something useful in there :)
As a bit of a weekend project and as a way to (finally) use the really cool APC220 Radio Communication modules that I bought ages ago I've put together a wireless and "headless" setup for my Raspberry Pi Zero. This allows me to have a remote-controllable Pi Zero placed anywhere within 1 km (line of sight) without wires! I'm hoping to use this as a robot backpack initially, probably for the Jumping Sumo.
I won't go into technical detail as the build was simply connecting the power and TX/RX from the Pi UART to the APC220 module (I've used protoboard to make a "hat") and telling the Pi to use ttyAMA0 for the console in /boot/cmdline.txt.
If you have any specific how-to questions, let me know in the comments. In the meantime enjoy the photos :)
The top of the hat
The bottom of the hat and Pi header
At the local end I am using an USB-TTL adapter and Putty to connect to the Pi.
It didn't take a lot of work and the benefits are huge - the killer for me was the ability to control exactly how much the application scaled up cost-wise. The costing for hobbyist use on Google App Engine was, in my opinion, completely unmanageable. You couldn't limit the performance of your app under load, the only option was to just pay more and more until you covered the quota exhaustion. With Heroku if I get a surge in interest it'll just get a bit slower, and I can choose to scale up at that point as necessary.
I also like deploying through pushing a branch to GitHub and the whole admin dashboard interface is really slick.
Bookmarked report links will automatically redirect from the old domain so you shouldn't feel a thing and the performance is right on par with Google App Engine.
Here's some very simple test code that you can use to drive one of these LED modules from a Raspberry Pi:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters