Episodios

  • Bald Yak 15, Playing with Radio .. now with software
    Feb 28 2026
    Foundations of Amateur Radio A little while ago I discussed a lovely article by programmer, artist, and game designer "blinry" called "Fifty Things you can do with a Software Defined Radio". This week it occurred to me that I could use their article as a framework to further explore my Bald Yak project. If you're unfamiliar, the Bald Yak project aims to create a modular, bidirectional and distributed signal processing and control system that leverages GNU Radio. For that to happen, I need a solid understanding of GNU Radio and its ecosystem. While I've been playing with it off and on for a decade or so, I have yet to build anything substantial for the simple reason that there was a puzzle piece missing. Last week I discovered it .. by accident. One of the fundamental things I'm attempting to achieve is the creation of a system that doesn't care which radio device you're using. In case you're wondering, I'm doing this because there is a proliferation of device specific software that cannot keep up with the influx of new hardware, doesn't consider the growing use of network connected radios, forced by increased RF noise levels in many communities across the world, not to mention, connecting increasingly expensive computing hardware to lightning rods. If everything goes to plan, it should be possible to use the project with any radio device. This is easier said than done. In GNU Radio this complex issue is addressed by having different blocks that represent different devices. You'll find receiver specific source blocks and equivalent sink blocks representing transmitters. While that's all fine and usable, it means that if I were to publish, say an FM receiver flowgraph, essentially a collection of blocks representing software that implements an FM receiver, I have to decide how I want to deal with the specific device. Do I select an RTL-SDR dongle as the device in my flowgraph and let you figure out how to make it work on the HackRF or the PlutoSDR sitting in your shack, or do I make it completely hardware agnostic, requiring you to wire it all together for your specific situation? Neither is desirable, or simple. Added to this is the problem that trying to make this work using a traditional analogue radio would cause more issues, since there isn't a Yaesu FT-857d block, nor is there one for an Icom IC-7400, let alone something from last century. Someone with some GNU Radio experience might point out that there are source and sink blocks for an audio device, which would allow you to plug one of those radios into a sound card and access the receiver, or transmitter, that way. While that would work, it requires that the radio is physically connected to a computer that's running GNU Radio. It would also give you all manner of headaches attempting to change frequency in the same way as you could using an RTL-SDR dongle. There are several ways to get remote radio control working across a network. For example, using 'rigctld' and 'Hamlib', we can change frequency on over 300 analogue radios, but even if you do, you'll discover that getting the audio across the network creates a whole range of new issues, not to mention that GNU Radio doesn't talk to Hamlib compatible radios. This is why many remote radio solutions are implemented as remote desktop sessions to a computer that is physically connected to the radio. While attempting to solve a completely unrelated challenge last week, I came across 'SoapySDR', described as a vendor and platform neutral SDR support library. Essentially it's a project that allows an application to interact with different devices without needing to support individual radios. This allows an application developer to write their software to support SoapySDR and from then on benefit from its ability to talk to lots of radios in a variety of different ways. For example, one of the in-built features is called 'SoapyRemote' which allows you to connect to a SoapySDR radio and interact with it across a network. Specifically, you can send and receive, as well as control the radio, essentially bundling together both the audio and control signals. SoapySDR also includes a tool called 'soapy-audio'. While documentation is sparse, it appears to support Hamlib, which means that you can, at least theoretically, connect a low powered computer, like for example a $5 Raspberry Pi Zero, to your analogue radio and access and control it across the network. Best part? It's supported by GNU Radio and many other applications. I've started creating a repository with the "Fifty Things you can do with a Software Defined Radio", one directory per thing, that will contain the bits needed to run inside GNU Radio and across the network to any SoapySDR compatible hardware. Now, before you get as excited as I am, there's a few hurdles. I'm not yet sure of the status of soapy-audio, but it looks promising. I have the bits sitting on my computer and I'm working through them. For example, I'm not sure ...
    Más Menos
    7 m
  • How to go about documenting your setup?
    Feb 21 2026
    Foundations of Amateur Radio

    How to go about documenting your setup?

    Possibly the single most important thing that separates science from "fiddling around" is documentation. Figuring out how to document things is often non-trivial and me telling you that "unless you wrote it down, it didn't happen" only goes so far.

    If documentation isn't your thing, what about "I broke something and I don't know how it was before I fiddled" as an incentive instead?

    Recently I had cause to explore how to document how my station is configured. To give you a sense, the microphone is connected to a remote-rig, which is connected to a Wi-Fi base station, over Wi-Fi to a Wi-Fi slave, to another remote-rig, to the radio body, to the VHF port, through two coax switches, a run of RG213, to an antenna.

    When receiving, it goes from the antenna, to a run of RG213, through two coax switches, to the VHF port, to the radio body, to a remote-rig, to a Wi-Fi slave, to a Wi-Fi base station to a remote-rig, to the remote head, to a set of headphones.

    Of course, at this point I've written it down, so, job done .. right?

    Well, what about the data connection, the external speaker, the remote head display and other goodies, say nothing of the duplicate devices with similar names. All in all, the FT-857d has something like eleven ports, each remote-rig has ten, so just wording it is a start, but hardly qualifies as documented.

    What if we drew a picture instead? At this point you could pull out your crayons and start scribbling on a sheet of butcher's paper and that would be a fine start, but it would be difficult to share with me or anyone else and updating it would be a challenge, let alone versioning it.

    As it happens, we're not the first people to have this issue. In the 1980's and 1990's researchers at Bell Labs were trying to figure out how to draw graphs and from that work a language, 'DOT', since everyone is a fan of the "DAG Of Tomorrow", and a series of tools, which today are known as 'Graphviz', made the visualisation of relationships possible without the application of coloured wax on dried cellulose fibre.

    In my other, computing job, I had cause to visualise the relationship between a million or so nodes, allowing me to discover a specific node that was directing all traffic, where I could insert my debugging code, but it was only possible thanks to these free and open source tools.

    While the DOT language isn't particularly complex, it occurred to me that for someone not conversant with the syntax, we can start even simpler with a CSV text file that shows the relationships between each device and convert the CSV to DOT and in turn to a picture.

    For example, I documented the relationship between the radio and the antenna by adding five lines to a CSV file, essentially, FT857d to VHF port to VHF coax switch to VHF grounding switch to RG213 to antenna.

    In all, to document everything except power, since I haven't decided how I want to describe it, I used a CSV with 47 lines. On the face of it, that might sound ridiculous, but I can tell you, it shows all the sockets on the FT857d, all the sockets on both remote-rig devices and the relationships between them. With it anyone can duplicate my set-up.

    Having previously spent some quality time learning various aspects of the DOT language, I figured I could write a little script to convert CSV files to DOT, but being of the generation of software developers with the attitude, "Why write something if someone else already did?", I discovered that Reinier Post at the Eindhoven University of Technology has a delightful collection of scripts, including one appropriately named 'csv2dot'.

    Written in Perl, the only language that according to some looks just as impenetrable before and after encryption, the tool works as advertised and makes a DOT file that you can then visualise using Graphviz.

    Of course there's Python scripts lying around that claim to do the same, but I wasn't keen to install the kitchen sink just to try them. Instead I made a quick little Docker file that you can find on my vk6flab GitHub repository that will walk you through this, complete with my example, so you have a starting point.

    Now, I used this here to describe my station, well, one part of it, but it can easily extend to document your entire station, and because we're talking about text files that contain the information, anyone with a copy of a text editor can update the file when things change, since that's where the real magic happens.

    So, what are you waiting for, documentation?

    I'm Onno VK6FLAB

    Más Menos
    5 m
  • Transmitting into a dummy load .. for a year .. on purpose.
    Feb 14 2026
    Foundations of Amateur Radio Just under a year ago I started an experiment. I set-up a beacon for WSPR, or Weak Signal Propagation Reporter, transmitting at 200 mW into a dummy load using eight bands between 80m and 10m. I also set-up an RTL-SDR dongle, connected to an external 20m HF antenna and made it monitor 18 amateur bands between 630m and 23cm. I left this running 24/7 for most of the year, though there were times when I detached the antenna due to local thunderstorms and there was a seven week period where there were no reports. It's highly likely that I forgot to reconnect the antenna, but I don't recall. For this analysis I used the online WSPRnet.org database where I uploaded my spots as they were decoded. I noticed that there are reports that I have locally that are not in the database, though I'm not sure why. They're incomplete and not in the same format and merging these is non-trivial for reasons I'll discuss. Lesson learnt, the "rtlsdr-wsprd" tool needs to be patched to output the data in the same format as is available from the online database and I need to actively log locally. The results are puzzling, at least to me right now. Let's start with the low hanging fruit. There are no reports of my WSPR beacon being received by anyone other than me. That doesn't guarantee that nobody heard me, just that nobody reported that they did. In the database there's just over six thousand reports of my station receiving a WSPR transmission from my beacon during the past year. The reports cover all bands, though not equally. The 80m band represents 6 percent of reports, where 40m accounts for 20 percent. The reported SNR, or Signal To Noise ratio, varies significantly across the data. For example, the 12m band shows a range of 42 dB. Digging into this does not reveal any patterns related to date, time of day, season, other band reports or any other metric I was able to imagine. In my exploration, missing records and time-zone differences aside, I discovered that the local data does not appear to match the database. For example I have records where the software decoded my beacon ten times in the same time-slot, but none of them exist in the database. For others, there's only one matching record, which leads me to believe that the WSPRnet.org database only accepts the first report for any given combination of timestamp, transmitter and receiver, but I have yet to confirm that. So, let's talk about getting more than one result for a specific time-slot. As you might know, a WSPR signal is transmitted every 120 seconds, starting at the even minute. Each transmission lasts 110.6 seconds. The decoder will make several attempts to decode multiple, potentially overlapping signals. It is my understanding that the way this happens is by essentially removing a known decoded signal and then attempting to decode what's left, repeating until either there's no more signals to decode, or time runs out, since there's probably only really 9.4 seconds in which to do this. Potentially this means that a faster computer will decode more signals, but I've not actually tested that, but it's probably something worth pursuing. Back to our decodes. If the first decode is removed from the received data and the next decode gives you similar information, same callsign and maidenhead locator, with SNR and frequency differences, then you might imagine that there's so much of it there that the only way that might happen is because the receiver is overloaded. I'm still looking into this, because if that's the case, then we'd need to determine if the receiver was always overloaded, or only sometimes. It's curious, since there's over a thousand other signals being received from other stations, several over 18,000 km away, so it's not like the receiver is completely swamped. Another hypothesis is that the decode is coming from a different band, like a harmonic. This is potentially caused because from a band and timing perspective, the receiver isn't linked to the transmitter in any way. The transmitter hammers away 24/7 one band after the next, switching every two minutes, the receiver listens for half an hour on a band, then randomly picks the next, until it runs out of bands and starts again. The receiver is listening on more than twice as many bands as the transmitter operates on, but that doesn't mean that it cannot hear the transmitter on a harmonic of one of the bands. Again, I don't know if this is the case, or if something else is happening. One thing I'd expect, is to see reports on other harmonics outside the bands that the transmitter is using, but I'm not seeing that. Perhaps the overload is limited to just the band we're actively monitoring and the other signals are coming in regardless of the overload. I'm still trying to determine if that's the case. As I said, merging the data from the two sources is non-trivial, time-zones and formatting are not the same and I'm not in the mood for manually ...
    Más Menos
    9 m
  • How to become a radio amateur today?
    Feb 7 2026
    Foundations of Amateur Radio The other day a fellow amateur revealed that they qualified for membership of the QWCA, the Quarter Century Wireless Association .. twice over .. there may have been some innocent whistling involved. During the ensuing discussion it emerged that it all started with a crystal radio set built together with dad, which triggered a whole lot of memories and made me consider just how you'd get into the hobby of amateur radio today. I think it's important to notice that amateur radio is a hobby. There are public service and emergency communication aspects to the experience, but it's essentially a hobby. It's supposed to be fun. I'm mentioning this because that might get obfuscated when I tell you that in order to actually be a radio amateur, you need a license. This license is required because when you transmit, radio waves don't know about international borders, don't know about interference, don't know about priorities and other aspects of our deeply interconnected world. Think of it as a way to formalise your responsibilities. Note that I said "when you transmit". You don't need an amateur radio license to listen, which you can do right now using all manner of online tools in your web browser, "WebSDR", "KiwiSDR" and "shortwave listener" are useful search terms if you're inclined. Getting an amateur license is not difficult. There are many amateurs who were licensed as a teenager, or even younger. It sets you up for life and amateur radio license in hand, you can start transmitting on dedicated amateur frequencies or so-called "bands". A license is required in every country and how that specifically happens in your country will require that you do a little research. Most countries have a so-called "peak body", an association that represents amateur radio to their government, it's a good place to start. In Australia where I live, it's called the Wireless Institute of Australia or WIA. In the United States, it's the ARRL, the UK it's called the RSGB. Searching for "amateur radio peak body" and your country should get you there. If you're stumped, your national telecommunications regulator is often another good place to find information, ultimately you'll be obtaining your amateur license from them anyway, even if they don't actually run courses and exams, though some do. Essentially what you're looking for is, where you need to go to get an amateur license and what's involved. As far as I know, most of this infrastructure is run by volunteers, fellow radio amateurs, even if there's a fee involved. You should also know that amateur licenses generally come in different flavours or levels. For example, in Australia there's currently three levels of license, Foundation, Standard and Advanced. The USA has Technician, General and Extra. The UK has Foundation, Intermediate and Full. The Netherlands has Novice and Full. In other words, what it's called and how many levels there are is country dependent, as are their requirements. I'll also mention that whatever license level you pursue, it's your hobby. You get to decide if, how and when you look for more responsibilities with a higher level of license. It might surprise you to know that I hold the basic Foundation license in Australia. I've held it since 2010. So-far I've yet to have a need to pursue anything further, despite regular "encouragement" to "upgrade" to a "real" license. You do you. It's your hobby. Some countries allow all of this to happen online, others require that you use pen and ink in person in a dedicated classroom, and everything in between. If you are hard of hearing, blind, or unable to physically attend, there are often specific tools and processes available to help you, make sure you ask. As an aside, I will mention that, as in life, there are people in this community who are less than welcoming and will go out of their way to be obnoxious, obstructionist or worse. Fortunately, while vocal and destructive, they are in the minority. Don't let their behaviour dissuade you from participating. You'll find amateurs all over the planet who will welcome you into the community with open arms. There are thousands of local amateur clubs, online resources and of course potentially a couple of million radio amateurs at the other end of your antenna. It's important to understand that the journey into amateur radio is different for everyone. For many long term amateurs the experience came from a family member or neighbour. While that route still exists, it's much less common as an introduction as it used to be. I first came across it as a teenager during a sea scouting event called JOTA or Jamboree On The Air. Whilst memorable, it wasn't until two more amateur radio interactions, decades apart, that I finally got to the point of actually discovering the hobby. For your journey, just being here, today, right now, is already a start. Welcome, it's nice to have you here. You've found the community! What are you ...
    Más Menos
    6 m
  • Building a shack: Part 8 - Will it ever end?
    Jan 31 2026
    Foundations of Amateur Radio

    Building a shack makes a number of assumptions about your situation and to make it abundantly clear, it's not the only way to enjoy the hobby of amateur radio. Visiting clubs locally and remotely, being a member of a club, visiting other amateurs, setting up your station in a suitcase or a backpack, on a bicycle, in a car, on a bus, or in a boat are some of the many other avenues open to you.

    That said, there is something magical about building your own shack. It has the ability to transform your hobby and if you have the opportunity, I can highly recommend it and I'd like to encourage you to consider the notion.

    As I've said previously, there is plenty of exploration and learning associated with putting one together. After you've spent some time reflecting, planning, designing, sourcing, building and testing the environment where you do amateur radio, you're likely to reach a point where you'll refer to that space as "your shack". You might even come to think of it as your shack, rather than a collection of trade offs that you've constructed in the best way you know how.

    Inevitably, you'll wonder what to do next.

    Several things come to mind. Creature comforts is probably the most obvious, a push to talk foot pedal, or a desk microphone, either on a stand or hanging from a boom, an audio mixer, a couch, a soldering station, a microwave oven, a fan, or air conditioning, in other words, plenty of opportunities for improvement and enhancement.

    Then there's computing, something that might interest you, or not. It offers the ability to explore a whole different side of amateur radio, from logging through to digital modes, from weak signal propagation to tracking satellites, the possibilities are endless.

    Your shack is also potentially a communal place where you can meet with your friends to share the experience.

    It's a place for contemplation, for relaxation, for "being" an amateur. All of it is open to you as possibility, an excuse to improve and enhance.

    The thing is, that too will come to a point of, let's call it "completion", and you're left with more questions.

    Amateur radio is inherently experimental in nature, that's the whole point of the pursuit. Your licence gave you access to the playground, your shack is that playground. Now it's up to you to play.

    Of course what playing looks like is unique to you. Over the past 15 years I've been describing what playing looks like to me, and from the over 3 million downloads last year from my website alone, not to mention the newsletters, rebroadcasts, podcast inclusions, other streaming services, news reports, social media and messages I've received, they've encouraged you to explore and investigate this wondrous activity.

    The point is, the shack you just completed isn't finished and hopefully it never will be. Whichever one it is, the first one, the one after that or the next one, your shack is a place where you can experiment, learn, discover, test, fail, succeed, challenge and enjoy the hobby of amateur radio. It's not the only place where you'll find this hobby, but it's your place.

    So, have at it.

    I'm Onno VK6FLAB

    Más Menos
    4 m
  • Building a shack: Part 7 - Powering your shack
    Jan 24 2026
    Foundations of Amateur Radio On your amateur radio journey, you'll likely discover that many transceivers run on 13.8 volt DC, give or take. For example my FT-857d requires 13.8 volt plus or minus 15 percent, with a negative ground, and a current draw of 22 ampere, more on that later. In other words, the power supply needs to be between about 11.7 and 15.9 volts, the same voltage that runs most vehicles with some wiggle room for fluctuating alternator charging cycles. While some radios will absolutely fit in your car, there's plenty where that just isn't the case, even though they're set-up for a 13.8 volt power supply. You might think of it as an anachronism, a few steps removed from spark gap transmitters, but there's more to the story. Most residential power grids run on AC power, at varying voltages and frequencies between 50 and 60 Hz. Across the world there's eight different AC voltages in use between 100 and 240 volts. Some countries use more than one combination and I haven't even looked at three phase power. Perhaps 13.8 volt DC isn't looking quite as odd. With this revelation comes the need to actually have 13.8 volt available in your shack. Converting your grid power to something you can plug your gear into requires some form of transformation, typically achieved with a power supply. Efficient, cheap and plentiful, the switch mode power supply is the most common. Built to a price, they're also often noisy, not just the fan, but noisy from a radio emissions perspective. Amateur radio has very sensitive receivers and as a result you can often hear, or see if you have a waterfall display, RF birdies, a sound reminiscent of a budgie whistling, every 100 kHz or so across the whole radio spectrum. Not something most other equipment cares about, so you're often left to fend for yourself in figuring out how to deal with this phenomenon. There's plenty of filtering techniques and circuits to be found and some of them even work, but for my money, I'd spend it on a power supply that doesn't make noise in the first place. A regulated power supply maintains a constant output voltage or current, regardless of variations in load or input voltage. An unregulated power supply can wander all over the place. Adjustable power supplies allow you to set the voltage, amperage, or both, sometimes with knobs, sometimes using external controls. At this point you might decide that this is all too hard and you want to do away with all this complexity and use a Sealed Lead Acid, or SLA battery, after all, that's what the 13.8 volt is based on, but then you'll need to charge it. Similarly, picking any battery technology requires some form of charging. Another word for charger is: power supply, often a switch mode one, and likely not filtered in any way that matters to you, since batteries, and for that matter solar power inverters, are unlikely to care about RF birdies. I will make mention of linear power supplies. When I started on this journey, this was the strong recommendation from my peers as the most desirable option. Although they're significantly less efficient than switch mode power supplies, only 30 percent versus better than 80 percent, from an RF perspective, they're extremely quiet. Of course, the lack of efficiency reveals itself in the form of heat, which necessitates the application of cooling, from a fan, often a very noisy fan. One potential source of power supply is a computer power supply unit or PSU. Before you go down that route, consider that they're intended for installation inside a case, often generate various voltages at very specific current draws and are not typically known for being RF quiet. After weighing up all the variables, I chose a laboratory grade switch mode current limiting adjustable power supply. It's set to 13.8 volt and it sits on my desk doing its thing. Rated at 1 to 15 volts at 40 ampere, it's now as old as I am in amateur radio terms, well and truly a teenager, it's also overkill, by quite a margin. Remember when I mentioned that my FT-857d is rated at drawing 22 ampere? As a QRP or low power station I typically use my transmitter set to 5 watt, but even when others use it at full power, I have never ever seen it draw more than 12 ampere. That's not to say that it can't draw 22, I've just never seen it. As a benefit of having such a massive overkill in the specifications of my power supply, I can power more than one radio and not notice. Not that they're all transmitting at the same time, or using more than 5 watt, it just doesn't matter. I previously discussed setting a standard for coax connectors in the shack, the same is true for deciding what to pick for power supply connectors. In my case I chose Anderson Powerpole connectors. Pins come in 15, 30 and 45 ampere ratings, are genderless and housings are available in many different colours. When I say genderless, it means that you can join two identical connectors. Within my shack, I use the RACES or ...
    Más Menos
    8 m
  • Building a shack: Part 6 - Noise
    Jan 17 2026
    Foundations of Amateur Radio Noise la la la la la hinders if I were a rich man effective a noise annoys an oyster communication but a noisy noise annoys an oyster more. Or said differently, when you're trying to communicate, something that the hobby of amateur radio does in spades, you'll need to deal with a phenomenon called noise. This noise comes in different forms, but the effect is the erection of barriers to successful communication. We refer to the impact of noise as a signal to noise ratio or SNR, the signal being the desired information, the noise the undesired interference. Expressed in decibels so you can deal with a massive range using a small number, an SNR greater than 0 dB means that the signal is stronger than the noise. Building a shack requires that you consider noise in many forms. If you've been a radio amateur for a few moments, your mind is likely to head straight for the hiss, crackle and pop you might hear whilst attempting to communicate on HF, but there's a few other things to discuss. There's all sorts of electronic noise received by your radio. In addition, there's audio noise picked up by your ears, and often your microphone. Then there's the noise that you produce, either from your transmitter into the rest of the building, or from your mouth or speakers into the ears of the people you share the space with. Starting with audio, having a space that you can close the door on is a good way to limit the noise coming into and leaving your shack. An alternative is to wear headphones and generate text to speech, or prerecord your voice, ready for a contact, potentially ideal for contesting, not so much for free form discussion. Another consideration is audio from other radios, including those tuned to a local broadcaster, or aviation frequencies. In other words, if you're transmitting with a microphone, make sure that there's no other audio coming through. In some cases it's even illegal to transmit that audio, but in all cases it's noise that makes communication more difficult. This kind of audio noise mitigation is pretty straightforward. In stark contrast, achieving the same with electronic noise is pretty much a balancing act between budget and effectiveness. The impact of noise is inversely proportional to distance. Essentially, the closer it is, the more impact it has. With that in mind, when you start dealing with noise, start nearby and work your way out. As you eliminate the nearby noise, other sources will become apparent. Without turning this into a noise mitigation class, the process is essentially one of elimination. First locate the noise source, then eliminate it. That's easier said than done. For example, if the noise source is a power supply sitting on your bench, you can turn it off, except if that power supply is the one powering your radio, so perhaps I should say: "attempt to eliminate it" instead. There's plenty of ways to have a go at this and volumetric kilotons of content published on the subject, some of it even useful. In many, but not all cases, noise is an electrical phenomenon that enters via any means possible and you'll need to attempt noise mitigation at multiple points of entry. Obvious sources are the power supply, coax and the antenna connection, the speaker cable, the microphone lead, and if you're using a computer, the USB, serial or Ethernet cable and within the computer itself. Each requiring different approaches. The obvious one is to disable the noise, that is, turn off the offending device. As I said, that might not be an option, but you can replace noisy gear, or place it further away. There's isolation, using tools like ferrites and chokes to stop the noise from reaching your radio. Often in the form of a clip-on blob, you'll find these on things like monitor and USB cables. Place the ferrite as close as possible to the input of your radio. If it's loose on the cable, wind it through the ferrite, the tighter the better. There's software solutions with varying levels of effectiveness. You'll find DSP or Digital Signal Processing knobs and buttons on many radios. They're generally helpful for narrowband repeating noises, like the hum of an electric motor or power supply. There's tools that attempt to impose a noise on your signal that cancels out the noise, anti-noise, if you like, by receiving the noise, inverting it and adding it to your signal, thus, at least theoretically, eliminating it, noise minus noise is silence. This can take the form of a device for noise coming in from the antenna, but it also applies to things like noise cancelling speakers. In audio this is called active noise cancelling. There's also a new crop of noise cancelling software, using A.I. or Assumed Intelligence, that captures your signal, attempts to figure out what's noise and what's not, removes the noise and then feeds it back to you. Your Mileage May Vary and if you break it, you get to keep both parts. Consider your privacy and security...
    Más Menos
    8 m
  • Building a shack: Part 5 - Antenna Shenanigans
    Jan 10 2026
    Foundations of Amateur Radio Putting your station together is best described as a juggling act, since you'll discover that everything depends on everything else and the more you plan, the more you learn and the more variables become apparent, none more so than with the selection of an antenna. Antennas are endlessly variable. To give you a taste, imagine a loop of wire, shaped like a circle. As you stretch the circle, it becomes an oval, if you pull on four corners, it's a square, pull it tight between two points and it more or less becomes a single wire. In other words, one piece of wire can essentially make an infinite number of antennas, and we haven't even varied the material, length, thickness or coating. So, to discuss antennas is to embark on a lifelong journey of exploration and me telling you to get one over another is not going to help, instead I'd like to discuss some considerations that you might not have encountered. The obvious issue of space is generally the first consideration. Then there's the neighbours and their sense of aesthetics, or lack thereof. There's local laws to abide by and sometimes permissions and permit requirements, though in many cases it seems that seeking forgiveness is a quicker route to success. Your Mileage May Vary. Talk to your local amateur club. There's the property owner to consider. If that's you, great, drill away, if not, you will need to tailor your antenna selection to the amount of renovations required. If you live in a restricted location where there are all manner of rules about the things that you cannot do, you might need to think carefully about your options. Stealthy antennas are a thing. As I've said previously, inside your roof might be an option, but there are others. Some examples to consider. If there's a TV aerial on your roof, will that look similar to a 70cm Yagi, or could it hide a 2m vertical? Do you have a metal gutter which might act as an antenna, or could you use Christmas light clips to hang a wire antenna from your gutters? Could you hide a vertical in a plastic down-pipe? Could you dangle a ladder-line antenna out a window at night, or use thin wire to hold up your plants while hiding your antenna in the garden, or can you use a beverage antenna that's lying on the ground, or hidden under the fence capping? Could you tune up your fence for that matter? In other ways to make your hobby look invisible in plain sight, could you use an antenna that looks like a roof vent, or if you're into moon bounce, could you repurpose a satellite dish? Could you make your outdoor washing line into an antenna or add a flagpole vertical antenna that also happens to soothe your vexillology sensibilities? While we're talking stealth, you can paint your antenna to match the decor. To get your antenna up in the air, could you use a length of wood, a pool cleaning or painters pole, strapped to your pergola, gazebo, balcony railing, or some other existing structure? Can you use the edging of a shade sail, professionally installed, it comes complete with mounting points. It doesn't stop there, I've heard of several amateurs who managed to park a sailboat, with the mast up, in their driveway without ever once floating it in a nearby body of water. Of course this is not exhaustive, nor is it meant to be, it's really a trigger to think about some options you might not have discovered. In other words, if you need stealth, you can be creative, rather than buy an antenna off the shelf. Speaking of buying off the shelf, there's nothing quite like buying a wonderful antenna, the answer to all your questions, only to discover that it needs tuning and tweaking, to the point where you might spend a year getting familiar with all its quirks. That's not to discourage you from picking that path, just to warn you that there is no such thing as the perfect antenna. If you are less space restricted, building a tower or a mast, the difference being that a tower stands all by itself, like the one in Paris, a mast needs guy-wires to keep it up. You'll likely need to consider failure, engineering standards and concrete, not to mention maintenance. So, how do you go about selecting the perfect antenna to suit your needs? In the same way that a magician pulls a rabbit from a hat. In other words, there's a trick. It's pretty simple, start small. With that I mean, start with a simple wire antenna. It will achieve a number of things that only experience will give you. For starters, it will prove that your shack works. As-in, end-to-end. That might not sound like a big deal, but there are many different moving parts in building a successful shack, making your first contact is going to be a milestone worth logging, more on that another day. While making your first contact is momentous, getting an antenna in the air will also allow you to hear what your neighbourhood sounds like. Is it completely RF quiet, in which case, where do you live and do you have a spare ...
    Más Menos
    6 m