Category Archives: General

Articles about Amateur Radio and the Nashua Area Radio Society. This is a general category which includes most articles on our website.

Fun with the Clear Sky Institute HamClock

I haven’t had the occasion to use any programming languages since retirement. That’s why the addition of a Raspberry Pi 4 Model B to the shack was a welcome change. I like to think of the Raspberry Pi as just another computer – one that uses a different operating system. With the Raspberry Pi, I can browse the Internet, access email, and write and run programs.

When I began to assemble a shack, I reserved a space on the wall for a 32″ TV, Figure 1, which was purchased during a temporary rental stay. That TV has been unused for 3 years, but it was earmarked for a HamClock.

Figure 1. Unused 32″ TV Earmarked for HamClock. The TV was wall-mounted above the shack monitors. Please click on image to expand.

I searched the N1FD site to see if anyone had written about HamClock, but no articles were found. The first article for HamClock, written by Elwood Downey, WB0OEW, appeared in October 2017 QST[1]. In his article, he calls for the use of an Adafruit HUZZAH ESP8266 Wi-Fi system-on-chip. That device was fastened to the back of a 7″ TFT display.

The version of HamClock that I built for use with the 32″ HDTV employs the Raspberry Pi 4 Model B, Figure 2, with 2 GB memory[2]. The kit that I found on Amazon includes a 64 GB microSD card (with USB adapter) onto which the Raspberry Pi operating system had been preloaded. The kit also includes a plastic case with fan, little rubber feet, tiny screws to attach a camera, device heatsinks, a wall-wart power supply, a micro HDMI to HDMI cable, an instruction manual and various assembly instruction cards. The user has to provide their own USB mouse and keyboard. I already owned a wireless mouse and keyboard so I was able to use a single USB 2.0 port on the Pi for the wireless adapter.

If you already have a microSD memory card with USB adapter, power supply, mouse, keyboard and HDMI cable, you could get by with a Raspberry Pi Zero[3] at one-fourth the price.

Figure 2. Raspberry Pi 4 With Wireless Mouse and Keyboard. A single USB 2.0 port on the Pi is used for the wireless adapter leaving 1 x USB 2.0 and 2 x USB 3.0 ports unused. Power and HDMI cables are visible. Please click on image to expand.

If your Raspberry Pi does not come equipped with the operating system installed, you can download it from the official Raspberry Pi website and store it on a microSD card for installation provided that you have a USB to microSD card adapter. The Raspberry Pi site allows you to select an operating system and it allows you to specify where the operating system will be stored upon download:

https://www.raspberrypi.com/software/

Please, follow the directions to install the operating system on your device.

I noticed an ambiguity in the kit documentation regarding connection of the cooling fan to the Pi bus header. A tiny drawing, Figure 3, shows where the red and black leads should be connected, namely pins 1 and 14, respectively. The documentation should make it clear that the long header row that contains pin 1 contains all of the odd-numbered pins while the long header row that contains pin 14 contains all of the even-numbered pins. This makes it a bit easier to locate pin 14.Figure 3. Location of the Fan Voltage Pins. The long header row that contains pin 1 contains all of the odd-numbered pins while the long header row that contains pin 14 contains all of the even-numbered pins. Please click on image to expand.

The instructions advise that the HDMI port closest to the DC power supply input be employed if only one monitor will be used. I was confused about the power supply connector. It may be plugged into the Pi upside down. However, I found that a bright flashlight can be used to look inside the power supply connector and inside the Pi power supply input jack to ensure that the conductive contacts face one another. If the connector has been plugged in correctly, some LED status lights on the Pi circuit card should illuminate once the inline DC power cord switch, Figure 4, has been turned on.

This switch has to be used with caution. The operating system, if running, must be shut down prior to turning the DC power switch to the off position. Failure to do so could corrupt data stored in memory and on the microSD card. This is a minor weakness in the design.

Figure 4. The Inline DC Power Switch. The operating system must be shut down from the Raspberry Pi menu icon on the taskbar before turning the DC power switch to the off position. Please click on image to expand.

Two methods may be used to shut down the Raspberry Pi. There is a Raspberry icon that appears on the taskbar. One of the drop-down selections is to log out. Once selected, another dropdown appears that offers the choice to shutdown or reboot. There is a second method that permits shutdown from a terminal window, Figure 5, which may be opened from the taskbar. One need only enter the command:

sudo shutdown -h now

to close the operating system. A third option is to add a momentary switch to the Pi bus header. That may be used to assert a shutdown command for the operating system. I have not implemented that feature.

Figure 5. Terminal Window. A terminal window may be opened from the Pi taskbar. Please click on image to expand.

Once an unused HDMI input to the monitor or TV is selected, and the mouse, keyboard and HDMI cable are plugged in, the power switch in the supply power cord may be switched on. Within seconds the Raspberry Pi logo appears followed by a series of questions that include language and time zone. The operating system will also ask for access to WiFi. I found that WiFi was easier than connecting another Ethernet cable to the access point.

Once WiFi is connected, the operating system will update. Finally, a desktop appears. The taskbar was docked to the top of the screen, but I moved it to the bottom because that is where I am used to seeing it, Figure 6. That may be accomplished by selecting that feature from the Raspberry Pi icon on the taskbar. The operating system provides access to the Internet via a browser icon that appears on the taskbar. There are also icons for a terminal window and Bluetooth.

Figure 6. Taskbar Moved and Docked to the Bottom of the Screen. This may be selected from screen appearance under the Raspberry Pi icon on the taskbar. Wallpaper like this may be selected from a list. Please click on image to expand.

The Raspberry Pi icon, Figure 7, provides several selections for screen appearance, resolution and the usual accessories. It also provides a means for shutting down the operating system.

Figure 7. Menu Provided Under Raspberry Pi Accessible from Taskbar. Access to many options is provided here including Raspberry Pi screen resolution. This is not the same as the HamClock screen resolution setting, which will be selected separately. Please click on image to expand.

It was learned that the means for capturing screenshots within the Pi operating system is Print Screen (PrtSc) just as it is in Windows, so this method has been used to illustrate this article. The images are stored as PNG files in the home Raspberry Pi folder, not under Screenshots in the Photo folder where one would expect them to be.

After opening a terminal window, I followed the directions provided at the Clear Sky Institute[4] web page under the Desktop tab with some notable exceptions. First, I took the advice of KM4ACK[5] to circumvent error messages by executing two scripts before attempting anything else. These scripts may be found listed under the Desktop tab under the subsection titled “To install HamClock on other UNIX-like systems follow these steps”, paragraph 2, “If you get errors”[6]. These steps at Clear Sky are correct except for a syntax error pointed out by KM4ACK[7] in the script:

sudo apt-get -y curl install make g++ libx11-dev xserver-xorg raspberrypi-ui-mods libraspberrypi-dev linux-libc-dev lightdm lxsession openssl

This script must be corrected so that the word ‘install’ precedes the word “curl”. The corrected script should read:

sudo apt-get -y install curl make g++ libx11-dev xserver-xorg raspberrypi-ui-mods libraspberrypi-dev linux-libc-dev lightdm lxsession openssl

I don’t know why this has not been corrected on the Clear Sky Institute web page, but I am happy that KM4ACK pointed it out.

We may now follow the steps listed under “To install HamClock on a Raspberry Pi follow these steps”. It is suggested that the lines of code be executed line-by-line.

cd
curl -O http://www.clearskyinstitute.com/ham/HamClock/install-hc-rpi
chmod u+x install-hc-rpi
./install-hc-rpi

If you choose not to install a desktop icon, you may run this script from a terminal window to start HamClock:

hamclock &

The first time that HamClock is run, some entries are requested. HamClock will also ask if you would like to connect to WiFi, Figure 8. Since you may have entered these for the Raspberry Pi operating system, you may answer yes if you would like to connect. HamClock will enter your username and password for you.

Figure 8. Connect to WiFi Screen. You will enter your call sign on setup page 1. You may provide your network username and password after saying yes to WiFi. If you provided these to the Raspberry Pi operating system, they will auto-fill if you select, yes. You can enter your latitude, longitude and grid square here, or you can Geolocate on your IP address (not recommended). Please click on image to expand.

Once the HamClock screen appears, if the correct resolution has been chosen, the screen should be mostly filled from top to bottom, but there may be some black bars on either side of the window. There are numerous instructions online about how to deal with this. I didn’t bother. Once I had chosen the closest resolution to my screen, 1366 x 768, I left well enough alone. HamClock also asks if you would like full-screen view, Figure 9, which eliminates the HamClock title bar as well as the taskbar. I selected that view.

Figure 9. Where to Select Full-Screen View. Full-screen view selection is on setup page 5. Please click on image to expand.

To close HamClock, please note that there is a small padlock symbol, Figure 10, beneath UTC in the upper left-hand corner. If one left clicks and holds the lock for a few seconds, then releases, a script will appear that will ask if you would like to exit the program. If you also intend to shut down the Pi, please don’t forget the logout procedure that is found under the Pi logo in the taskbar.

Figure 10. Padlock Symbol Beneath the UTC Box. If you were to left click and hold on the lock for a few seconds and release, a script will appear that will ask if you would like to exit HamClock. Please click on image to expand.

If you would like HamClock to start automatically upon reboot, a script that will do it may be run anytime from a terminal window. The scripts are found under, ” To install HamClock on other UNIX-like systems follow these steps”, in paragraph 10:

cd ~/ESPHamClock
mkdir -p ~/.config/autostart
cp hamclock.desktop ~/.config/autostart

You may want to place a HamClock icon on your Raspberry Pi desktop. That may be accomplished by copying, pasting and executing the following script in a terminal window:

cd ~/ESPHamClock
mkdir -p ~/.hamclock
cp hamclock.png ~/.hamclock
cp -p hamclock.desktop ~/Desktop

After running the scripts, close the terminal window and reboot the machine from the Pi icon. HamClock should restart immediately. The size of the HamClock window may appear reduced after reboot but may be expanded just as one might expand any other window.

As soon as HamClock is up and running you may want to explore all of the options and items that are found under “Terrain” that is found in the upper left-hand corner of the map, Figure 11. An extensive dropdown menu will appear. Go ahead and press the radio buttons followed by “okay” to see what happens. Every new screen is a surprise. It’s not that hard to get back to the screen where you started, so please experiment a little bit.

Figure 11. Dropdown Menu for the Main Graphic View. You will want to explore all of the options available from this dropdown menu visible to the left of the Mercator projection. Other menus may be accessed by clicking on the titles that appear within the smaller graphics. For a complete description, please consult the User Guide. Please click on image to expand.

Additional views for the smaller graphics may be requested by clicking on the graphics titles, themselves. For example, you may want to display propagation paths from your locale as supplied by WSJT, Figure 12. There are also satellite and space station orbits.

To change the color of your call sign background, click to the right of your call sign. To change the color of your call sign, click on the letters.

Figure 12. Display of Propagation Paths From Our Locale. If WSJT-X was selected on Page 2 of the setup menu, this graphic will be displayed. My call sign color and background color has been changed for this view. Please click on image to expand.

A particularly interesting view of the aurora is shown in Figure 13. This is one more example of how much data is available for presentation in Hamclock.

Figure 13.  Display of the Aurora. This is another example of how much data is available for display within the HamClock application. Please click on image to expand.

A complete HamClock User Guide is available at the Clear Sky Institute website under the User Guide tab[8].

Please let me know if you build a HamClock of your own. It is nice to receive feedback.

References:

[1] Elwood Downey, WB0OEW, HamClock, QST, October 2017, pp. 42-44.

[2] Raspberry Pi 4, Model B, 2 GB.

https://www.amazon.com/dp/B07TMGBPFQ/ref=sspa_dk_detail_6?ie=UTF8&pd_rd_i=B07TKFKKMPp13NParams&s=electronics&sp_csd=d2lkZ2V0TmFtZT1zcF9kZXRhaWxfdGhlbWF0aWM&th=1

[3] Raspberry Pi Zero (2017).

https://www.amazon.com/Raspberry-Pi-Zero-Wireless-model/dp/B06XFZC3BX/ref=sr_1_8?crid=2P2OQ2SF3LHR5&keywords=raspberry+pi&qid=1692662504&sprefix=Raspberry+pi%2Caps%2C151&sr=8-8

[4] Elwood Downey, WB0OEW, Clear Sky Institute. https://www.clearskyinstitute.com/ham/HamClock/

[5] Jason Oleham, KM4ACK, YouTube, 2:30. https://www.youtube.com/watch?v=2Cy5Swmk3gU

[6] Elwood Downey, WB0OEW, Clear Sky Institute, Op. Cit., Desktop tab.

[7] Jason Oleham, KM4ACK, YouTube, Op. Cit.

[8] Elwood Downey, WB0OEW, Clear Sky Institute, Op. Cit., User Guide tab.

 

 

 

August POTA/SOTA Activation Pack Monadnock August 19th

Before I start going on about Pack Monadnock I’d like to tell you a little about Mount Agamenticus in Maine which several of us activated on August 5th.

Mount Agamenticus is a beautiful little monadnock  or an isolated hill of  bedrock that rises conspicuously  above the surrounding terrain. Much like Mount Monadnock  does in new Hampshire. It’s just a short drive into Maine (just down the road from the outlets in Kittery if you want to kill two birds with one stone)  and despite the annoying  parking app you must download I feel it’s worth your time to check out. Activating the mountain was a breeze. Jack WM0G , John N1PTX and I all set up in a shady area a short walk in the park. Unfortunately my phone died on me the previous day and I didn’t think to ask my companions  so I didn’t  get any pictures for you.  We had beautiful if somewhat  over warm weather. I didn’t have any luck on that day but Jack and John were both making contacts.  After struggling on 6 meters for a time I broke out my lunch and considered a short nap (it was that kind of a day) . I also had several interesting conversations with several people passing by wondering what we were up to.

Our next SOTA/POTA will be this Saturday August 19th . Pack Monadnock is another destination  that gives you the choice to either hike up or drive up via the auto road. Pack also gives really good views of the surrounding countryside which definitely  increases the appeal of this mountain.

I’m planning on being on the summit at 11:00 am but I plan on being their most of the afternoon so don’t worry if you can’t make it till later . There is a scattering of picnic tables so don’t forget to pack a lunch.  The mountains are getting very popular so I advise getting a parking permit ahead of time . Here is a link to get a permit.   

 

Jamey making POTA contacts
Jamey AC1DC making some POTA contacts

If you’ve never been to Pack Monadnock travel west on 101 towards Peterborough. Miller State Park is on the right-hand side of the road across the street from the old Temple Mountain  Ski area.

Please leave a comment on the story so I have an idea of how many people are planning on attending.

Hope to see you on Pack Monadnock

73′

Jim K1BRM

QRP In the Field

Given that Summer is in full swing and SOTA/POTA activating or hunting seems to be on everyone’s mind, I figured that an article on QRP portable operation was in order. One disclaimer, however… I am not a vastly experienced QRP portable op… I’ve dabbled in it and seen lots of YouTube vids (I guess that does make me kind of an expert)… and I do operate QRP from time to time. And, like a good pack rat… I have collected a few QRP rigs and their associated bling that I like to use.

A Little Background

SOTA/POTA

If you’re not familiar with SOTA, it stands for Summits On The Air, a “program” in which Hams go to summits and operate (It is kind of like the stricter, more formal cousin to the seemingly better known POTA or Parks On The Air). The SOTA web site at SOTA.org.uk describes SOTA as “an award scheme for radio amateurs that encourages portable operation in mountainous areas”.  Both POTA and SOTA are typically done QRP, as QRP gear lends itself nicely to these activities… it’s lighter and more portable than an Icom 7300 or Yaesu FTdx10.

Although many SOTA operators spend all kinds of time trying to lighten their packs with the smallest setups possible… I am not one of them. I always overpack for any hiking trip (or at least my traveling companions complain that I do).  As far as radio is concerned, when I am out “portable”, I typically operate out of my truck so weight is not an issue, so all my stuff is gonna be heavier. Also, I like my summits to be accessible via car… not that I am lazy (although my wife may disagree with that statement), it just happens that a nice hike generally takes me a while and seriously cuts into my operating time. That being said, I do have a few fairly light rigs if I really want to slim things down.

QRP

I think everyone is familiar with QRP operating, but if not… QRP refers to the use of low power when transmitting, typically five watts or less. QRPp is used to describe sub 1 watt operation (I am not that hardcore, nor am I a masochist, so I generally stick with 5 watts). Despite the reduced power, QRP is actually a lot of fun and has many advantages over higher-powered setups (especially for operating in the field).

Why Go QRP?

Altoids Tim QRP
Altoids Tim QRP

One of the main benefits of QRP is its portability. Because the equipment required to transmit at low power is generally small and lightweight, it can easily be taken to the field (and a side benefit is it can easily be hidden from your spouse). With QRP gear, it’s possible to operate from remote or rugged locations that might not be accessible with larger, more complex setups.

Another advantage of QRP is its simplicity. QRP equipment is generally less complex than QRO setups, which means that it’s generally easier to set up and use (as well as easier to afford). This makes it a great choice for field operation too. The transceivers are smaller and generally less expensive, tuners (if you use them) are smaller, and there are a host of CW keys that cater to the lightweight QRP crowd. These little gems can be as light as a few ounces. Since I don’t have the greatest dexterity in the world, I use a fairly large and hefty key… it weighs almost as much as each of my QRP rigs! Despite its size and weight, it fits nicely in my truck.

Despite its lower power output, QRP can still provide excellent performance. I have noticed, in my completely non-scientific testing, that I have not yet failed to complete a single QRP QSO. Now mind you, it may, and generally does, take me longer to complete a QRP QSO than it does to complete one at 100, 500 or 1000 watts. Stands to reason. But, it has never failed me. However, I generally only operate either CW or FT8 when QRP, rarely SSB. So, keep that in mind.

You do have to be patient though, and be mindful of who you are trying to QSO with. If you’re just on the air for some casual contacts or are activating a park or summit, you will likely do well and have fun. If you are trying to work a DX’pedition to a top 10 most wanted country, you might have some trouble making the QSO and experience what I once heard a Ham say about QRP… “with reduced power comes great frustration”. But, with the right attitude, QRP can be a lot of fun! QRP can be especially satisfying for those of us who enjoy the challenge of making long-distance contacts with minimal power… and it’s also fun to explain to your spouse the concept of dollars/mile when you want to pick up that new, “inexpensive” QRP gear.

Gear and Such

Obviously, when operating QRP in the field, you’ll not be bringing along your tower and yagis, or likely even your full-size multiband wire antennas. QRP operation in the field is generally about simplicity, ease of setup, and ensuring a low frustration quotient. Often wire verticals with a few radials are used in conjunction with a lightweight fiberglass mast, or, what seems to be more popular, is the use of End Fed Half Wave antennas (commonly called EFHW antennas). This is what I use. It is typically a ½ wavelength radiator connected to the radio, usually with a 9:1 or 49:1 transformer. For the more popular QRP bands (20, 30, and 40 Meters), it is a very manageable antenna.

So this is a good time to talk about gear… that’s always fun, talking about gear (not as much fun as building or buying it and then using it though). Depending on what you want to do with QRP and where you want to operate, gear considerations can range from just a transceiver to an entire station.

For those that want to operate QRP from home, you likely have what you need already! Most HF radios can be dialed down to 5W or less. BINGO… you are running a QRP station. For those of us that want to bring our stations to the field, it is unlikely that we’ll drag our YaeComWoodCraftTec HF rigs (get it? Yaesu, Icom, Kenwood, Elecraft, and Ten Tec) to a campground, state park, or summit. So what’s a Ham to do? I am glad you asked…

Transceivers

Options

QRP transceivers can range in price from $14 (for a single frequency Pixie kit) to several grand for a new Elecraft rig. I advise staying away from the really cheap rigs though, as their performance is commensurate with their price (and they drive the frustration quotient wayyyy up). Many QRP rigs come in kit form, but if kit building is not your thing, there are many that you can buy pre-built. As well, most QRP rigs are either single band or limited to a subset of the HF range… typically 20-80M. Although, the more expensive rigs will cover the entire HF spectrum and even 6M in some cases. 20, 30, and 40 meters are the most popular QRP bands, and most QRP gear will operate there.

Manufacturers

Elecraft has made and continues to make some very popular QRP rigs (such as the KX-1, KX-2, and KX-3), Yaesu has their FT-818 and 819 rigs, Icom has their IC-703 and current IC-705 rigs, LNR Precision makes the Mountain Topper line of QRP rigs, and MFJ made their Cub line of QRP rigs which you can sometimes find on Ebay, DL2MAN & PE1NNZ offer their (tr)uSDX line of SDR QRP rigs, and Xiegu makes some nice rigs including their G90 and X5105. There are literally hundreds of QRP rigs out there from dozens of manufacturers… Heathkit, Oak Hills Research, NorCal Radio, QRP Labs, Small Wonder Labs, Index Laboratories, etc. The list goes on and on.

Due Diligence

Unless you like being surprised though, do your research before buying a QRP rig. YouTube has lots of great vids on QRP transceivers. Google “YouTube Ham Radio Crash Course QRP”, “You Tube K4SWL QRP” “YouTube review <insert QRP rig here>”. eHam also has a product review forum that can be very helpful in making gear decisions, Check them out at Eham.net.

My Favorites

I have a number of QRP transceivers (none were particularly expensive) but my favorites are the (tr)uSDX, and the LNR Precision FX-2, as both are very portable and have features that I like. I also have an MFJ Cub for 30 meters, which I like but it takes ~30 minutes to warm up to become frequency stable… not a good field radio.

(tr)uSDX SDR QRP Rig
(tr)uSDX SDR QRP Rig

The (tr)uSDX is a multi-band, multi-mode rig covering 20-80 meters with a maximum of 5w out. It operates SSB, AM, CW, and digital (with the right interface). It has a lot of really slick features for a sub $200 HF rig.

 

 

 

LNR Precision FX-2
LNR Precision FX-2

The FX-2 (which is no longer made) is a 30 and 40 meter CW only rig with up to 5w out. It is built like a tank with some cool features as well and cost me $70.  I bet you already know a Ham who has their own favorite QRP rigs they’d love to tell you about!

Power Sources

Batteries are the most likely power source for QRP in the field. While many of the more expensive QRP rigs have internal batteries, most use an external power source. You can use literally any battery that provides the right voltage and current, and most QRP rigs operate anywhere from 8 to 12v, with reduced power below 12v, and draw less than 1 amp on TX. A very popular external battery type used by many QRP ops today are rechargable Lithium Iron Phosphate (aka LiFePO) batteries. They are extremely light, very portable, and perform exceptionally well. A nice accessory to your LiFePO battery is a solar charger. If you plan to spend lots of time in the field, that may be a worthwhile investment. I have found Amazon to be a great source for LiFePO batteries.

Keys

CW Morse Double Paddle
CW Morse Double Paddle

If you are a CW op, I am guessing you are very particular aboutyour keys (aren’t we all). I am a Bencher guy… since I got my ticket, I have used only Bencher Iambic paddles at my station… but they are really big, really heavy, and a pain in the neck to carry around for portable operation. Although I don’t own any, I know that Vibroplex bugs are the same, and many straight keys are a bit cumbersome too (although not as much as bugs or “traditional” paddles).

There are a number of places to get small, lightweight keys for field use. Google it, and you’ll get some options. But I’d like to save you some time (cuz I am a nice guy). Check out CW Morse and have a look at their line of keys. I have their double paddle with a base, and a Camel Back straight key. Both are made very well, and a joy to use… and they fit nicely in my truck. Are there smaller, lighter-weight options out there from them and others? Yep. But I really like and recommend these.

Antennas

QRP Guys No Tune EFHW Transformer
QRP Guys No Tune EFHW Transformer

Here’s where the sky is the limit (pardon the pun… I couldn’t help it). QRP antennas run the gamut from loops, to horizontal wires, to verticals, to portable beams. In general however, portability and ease of deployment are key to success in the field. That is what makes the EFHW such a popular QRP field antenna.

EFHW’s are very easy to build and if done right, don’t require a tuner (and to make it even easier, you can buy the transformer in a nice kit). QRPGuys.com sells a bunch of QRP EFHW transformer kits. I have the 10-80m no tune kit. You should check them out . If you are only interested in operating on one or two bands, cutting elements for each band makes sense. But what if you want to operate anywhere from 10-80 meters? Cutting and carrying elements for all of those bands is tiresome, cumbersome, and unnecessary. Enter the “linked dipole” concept for an EFHW antenna.

Linked EFHW

What is a linked dipole? I am glad you asked… according to VK7BEN, a linked dipole “provide[s] the benefit of creating a single-wire antenna that is resonant on multiple bands without a tuner by “linking” together lengths of wire with clips.”. However, I use banana connectors and small carabiners on my linked EFHW. I also found that 18-22 gauge speaker wire works really well for portable EFHW elements.

Building a Linked EFHW

Here’s how to build my version of the linked EFHW.

  1. Determine the full element length for each band you want to work.
  2. Cut the element for the highest band you want to operate (i.e. 20M) at it’s full length.
  3. Next determine the difference between the full length for the next highest band and the previous band (i.e. 30M – 20M).
  4. Then cut an element for that length.

Do this for each band you want to work.

For example, if you want an antenna for 20-40M, here’s what you would do:

  • 20M full length: 28’ 8”
  • 30M full length: 42’ 6”
  • 40M full length: 61’ 6”
  1. Cut an element to 28’ 8” (this is your 20M or “base” element)
  2. Cut an element for the difference between 20 and 30M (13’ 10”), this will be your 30M “linked” element
  3. Cut an element for the difference between 30 and 40M (19’), this will be your 40M “linked” element

I soldered a small ring connector to one end of the 20M element to attach to the QRP Guys transformer kit at the post and wing nut.

20 Meter EFHW Post Connection
20M EFHW Post Connection

On the other end, I made a small loop by tying the antenna back on itself, and then attached a male banana connector to the very end.

Element End
Element End

I did the same to each end of the 30M element and to one end of the 40M element too. To the other end of the 40M element I simply made the loop, but did not add the banana connector.  This is where I attach the “hoist rope” for getting the antenna into the trees.

I have 150 feet of 1/4” line that I use to hoist the antenna into the trees. To one end, I attached a light carabiner.

Using the Linked EFHW

To operate 20M, I simply attach the 20M element to the transformer using the ring connector. Then I attach the carabiner at the end of the hoist rope to the looped end of the 20M element, and pull it up. If I want to operate 30M, I use a female / female barrel connector to electrically attach the 30M linked element to the 20M element. A light carabiner physically connects the two elements at the loops. This provides strain relief for the banana connectors..

Element Connection Point
Element Connection Point

For 40M, I attach the 40M linked element to the end of the 30M element (which is attached to the 20M element) in the same way and connect the hoist rope to the antenna with a carabiner.

There are many ways to construct a linked antenna. I like this design because, unlike traditional linked dipole designs, which use a “trail line” to deploy all of the elements at once having a length equal to the longest band element, this allows me to only deploy the elements that I need, making antenna deployment overall simpler IMO. I happen to like simple, it is less taxing on my brain.

As with any antenna, resonance can be affected by many factors, but I did not find any impact to the resonance of the elements by tying them back on themselves for the end loops.

Antenna Tuner

MFJ 9201 QRP Antenna Tuner
MFJ 9201 QRP Antenna Tuner

While it is best to not need or use an antenna tuner, especially when running QRP power levels, sometimes it cannot be helped. Unless your rig has an internal antenna tuner, there are really two options for tuners… automatic or manual. LDG makes some nice auto tuners and one specifically for QRP, the Z-817. Personally, I find external auto-tuners kind of pricey for dragging them out to the field, plus it is one more thing requiring a battery. Although I never want to have to use it, in case I do need one, I keep an MFJ-9201 manual tuner in my kit. The key for tuners is get a small, light-weight one.  Make sure, if it is an auto tuner, that your radio can provide the needed power to activate it. Some auto-tuners will not activate below 5W.

Computer

Who needs a computer in the field! Well, if you want to work FT8 from that shiny new QRP rig, you do. Also, I find logging on a computer to be much easier than doing so on paper. No need to re-enter it all into my log at home when I get back. Plus, my handwriting is atrocious, and often, even I can’t decipher what it says, so I save myself the trouble.

Really, any portable computer will work for logging. From Apple and Android phones, to tablets, to Windows laptops, to Linux devices. As long as they have decent battery life, and some logging software available for them, they should work. I use an older Lenovo Chromebook that I converted to Linux, and log with CQR log. When I get home, I export to an ADI file and import the QSO’s into my home logging software. Because it is a tablet with an O/S that supports WSJT-X, the Lenovo also has the benefit of allowing me to work digital modes such as FT8 as well.

One thing to keep in mind though, paper logs are easy to read in direct sunlight; not so much for many device screens (ask me how I know).

Packs

Now that you have that sweet QRP field kit, how do you get it where you’re going? Well, this is the topic of hours and hours of YouTube videos. Backpacks are the most reasonable answer if you’re going into the bush, but, if you are like me and going into the bush means driving to a place with trees, you might want to consider something else.

I’ve seen many cool QRP field setups carried in Pelican cases, or the less expensive Apache cases from Harbor Freight. One benefit to them is that your stuff is well protected if you tend to drop things (again… ask me how I know). In addition to Apache cases, I also use a small “range” bag that can be found at most sporting goods stores or online. It has lots of pockets and is easily carried. It also fits nicely in my truck when I am going into the bush.

If you are a backpack person, there are literally dozens of options. If you need to kill a week or so of time,  Google “Best backpack for QRP” or “Best backpack for SOTA/POTA”.

There You Have It

That’s the 411 of QRP and building out a basic QRP field kit. Of course, your kit can be anything from minimalist to extravagant, but, you don’t need a lot of gear or money to have some QRP fun. The key, especially if you are interested in going outdoors with your gear, is simply to do it. QRP gear is the perfect companion to a day at the park (or even a few hours grabbed at the end of the work-day).

Operating QRP can be a lot of fun simply because it’s a challenge. In my opinion, operating QRP successfully, builds out a set of skills and techniques that will also make you a better QRO operator. And, there is certainly a sense of accomplishment that comes from successfully communicating with others using minimal power.

Whether you plan to operate, watch and learn, or just hang out and socialize; I certainly hope to see you at the upcoming NARS SOTA activations. Unless I have to travel, I plan to be there and exercise my field kit. Of course, I’ll be driving up.