Skip to main content

Posts

SDR and ATC Transponders

Here is the skinny on my ATC transponder ADS-B phun and games .   Get a SDR receiver for the princely sum of $25, including antennas and tripod here: https://www.rtl-sdr.com/buy-rtl-sdr-dvb-t-dongles/ Mode A, C and S Transponders at Al Ain Airport Ubuntu Linux First try the Ubuntu repos for dump1090 if that is the Linux version you are using: $ sudo apt install dump1090 and see if you are lucky! Fedora Linux Here is what I did to build Malcom Rob's version of dump1090 on Fedora 26: According to legend, Malcom's is the best one and according to the below, it really is much better than rtl_adsb . Get the rtl-sdr library, which includes a set of useful basic utilities, including rtl_test, rtl_fm, rtl_tcp and rtl_adsb : # dnf install rtl-sdr Get the development files, so we can build other software with this library: # dnf install rtl-sdr-devel Get and make Malcom's software: # cd # mkdir sw # cd sw # git clone git://github.com...

Software Defined Radios With a Macbook Pro

I finally succumbed to the temptation and bought a couple of RTL SDR dongles.  These thingies are so cheap, they really open the art of amateur radio to the masses again. There are also some notes on the not so cheap, more advanced HackRF One dongle at the bottom of this article. CubicSDR on a Macbook Pro These gadgets are wide band digital receivers, which make them much fun.  Effectively, RTL-SDR with CubicSDR provides you with a wide band DIY Spectrum Analyzer that works from about 1 MHz all the way up to about 3 GHz. Read all about RTL-SDR here: https://www.rtl-sdr.com/ If you have no idea what to do with SDR toys, go here: https://www.hfunderground.com/board/ or here: https://amsat-uk.org/funcube/funcube-dongle-sdr/ or, of course here: http://www.aeronetworks.ca/2017/07/cube-satellites.html BTW, if you use Linux or BSD, skip to the bottom of the page. Where to Buy an SDR Widget Get your own RTL-SDR kit for the enormous sum of $26 here: htt...

The Clue by Four, 40 m band Helical Dipole Antenna

Not Enough Spots Thanks to the current low sun spot cycle, the 40 meter band arguably provides the best HF radio propagation.  The problem with this band, is that a half wave dipole wire antenna is 20 meters long.  If you string that from a mast or a tree, you may need 30 to 40 meters of space for the wire and ropes.  Most modern backyards are not that large. One solution is to upgrade to a Country Manor House, but for most radio amateurs, that would be too much lawn to mow.  On the other hand, fitting a 40 meter band dipole into the attic of a regular sized home or cottage, certainly seems impossible, but it is actually quite easy: Curl the dipole up into a helix! Clue Up On Helices The following NEC card stack defines a dipole made from two helices, wound around a 5 meter length of "Two by Four" lumber, for a 75% overall size reduction, which should fit into the attic of most homes. "Two by Four" lumber is actually 1.5 by 3.5 inches, or 38 by 89 mm in s...

Socks Proxy Setup

RIP WPA2 I can never remember how to set up a Socks proxy to my Digital Ocean Droplet, so here is a simple little how-to guide. Using a secure proxy server to somewhere else in the wild wild world, to get through a local insecurity suddenly got added urgency, since the WiFi WPA2 protocol is now officially broken. Using a secure proxy in this way, will prevent local script kiddies from looking over your shoulder on a WiFi connection. The most fun you can have with your socks on! Note that the cheapest Digital Ocean Linux or BSD virtual server costs only $5 per month and that is all you need.  You don't even need to change or install anything on it, since it comes with sshd running by default.  So, just sign up for one, start using socks over ssh and relax. On the laptop: Add nameserver 8.8.8.8 to the top of /etc/resolv.conf Start the socks proxy: # killall ssh # ssh -fND 2222 -p 22 root@w.x.y.z Firefox: Open Menu Preferences, Advanced, Network, Sett...

Scattering - RCS calculation with NEC2

Would you like to know the scattering Radar Cross Section (RCS) of your RC or UAV quadcopter toy?  If you are a Real, Card Carrying Geek, then of course you would... The Boeing RAH-66 Was Designed for Low RCS I have done some more work on this problem and decided to revisit this article, so if you think you have seen it before, keep reading.  Search Radar Two types of radar need to be considered. Long range over the horizon radar is used to tell whether there is an aircraft and where it is heading. Short range targeting radar is used to track an aircraft and direct an anti-aircraft gun or missile. The Radio Frequency modelling of the aircraft skin is done using a vast number of triangles, called a surface wire frame, or a mesh.  The maximum size of the triangle wires, need to be <1/10th of a radar wave length.  A computer program then calculates the interaction of every wire, with every other wire, iterated over the whole skin - a tremendous comp...

HF Mini Radio - BitX40

I am an ex Army Signals officer and also built military HF radio equipment for a period of about ten years - man pack, ground and airborne, so when I saw the new BitX40 radio kit, I just had to get a couple to play with. These kits are made in India, are good quality surface mount, built up tested and aligned.  For the princely sum of $59, one can get two or three and have fun: http://www.hfsigs.com/ Bread and Circuses Here is my breadboard setup.  Yup, it is a real olde skool bread cutting board.  Wood is a good insulator and some blue ticky-tacky keeps things down: BitX40 7 MHz SSB HF Radio The BitX40 is an analogue radio, with a digital synthesizer tuner - so it is a throwback to some time before the dinosaurs, circa 1985 - nice and simple. The default setup is for the 40 meter band, but one can tune it for any HF band, by using switches and coils.  They are so cheap, one could get multiple radios and configure each for a different band of inter...

Digital Slow Scan TV with gstreamer

I had a look at radio amateur Slow Scan TV and noticed that it is analogue, so I wondered whether I can create a digital version using gstreamer. Here is an example script that will play one video frame every ten seconds.  This could very well form the basis for a digital SSTV system. The first part of the script are commented tests that show how I worked my way up to the super slow method that uses the videorate plugin to drop most of the frames. Note that due to the long time between SSTV frames, everything will always be different, so motion jpeg will likely work better than h.264 compression. #! /bin/bash echo Slow Scan TV example with a laptop PC camera and gstreamer # Install all the plugins including v4l2src: # dnf install gst*plugin* # Play the laptop PC camera the simplest possible way using the system defaults: # gst-launch-0.10 v4l2src device=/dev/video0 ! autovideosink # Play the camera and scale it smaller at 30 frames per second # gst-launch-0.10 v4l2src dev...