Homebrew Buddipole

In a couple earlier posts, I wrote about making a homebrew Buddistick using Budd Drummand’s (W3FF) plans. His plans can be found on his page located here: https://sites.google.com/site/w3ffhomepage/.

I knew when I started building my station that I wanted a couple of portable antennas. I like making things, and decided to give his antennas a shot after deciding that I might be able to actually make an antenna that worked following Budd’s directions. I made the Buddistick first, then later made the Buddipole. Both are easy to make and work well. I use them both (not at the same time) for my main antenna right now, until I can get a full size dipole hung up, and coax run to the house etc. I am fairly new to the HF world and I don’t have my home station complete yet, so these antenna were a quick and easy way for me to get started on HF.

Pictured first are the components of the Buddipole. Starting at the top-left are the two 20 meter coils. To the right, the shorter coil set is for 15 and 17 meters. To their right is the “T” component for mounting the antenna on a painters pole. The black adapter changes the threads from PVC to the painters pole. In the middle are the two antenna whips, mounted in some CPVC with speaker wire coming out of the ends allowing for connections to be made to the whips. The bottom two pieces are CPVC arms with speaker wire running through them, and connectors.

The following picture shows the Buddipole set up with the painters pole extended. The length of the extended painters pole in this picture is about 10 ft.

The plans that Budd published has the coax line ending with the spade connectors. I bought a piece of 50ft coax with PL-259’s installed already on both ends and I did not want to cut one of them off, so I made the following adapter. It is simply a small project box from Radio Shack, with a SO-239 mounted in it and speaker wires connected to the SO-239 center and ground. The orange line is old fly fishing line for hanging the box from the antenna. I use a velcro strip for this.

Here is a table that I made showing how I setup the antenna and the resulting SWR measurements. I think the higher SWR on 20 and 6 meters is due to the proximity of the metal eve troughs that the antenna is near with extended. If I orient the antenna parallel to the gutter, the SWR goes up. My house sits approx SW-NE so pointing the red end of the antenna North puts it at about 45 degrees to the gutter and the SWR goes down. This is the most convenient place to set up the antenna within reach of the radio inside allowing for the 50ft run of coax. The whip column is how many additional sections of the whip I need to extend not counting the 1 section length it is with all the sections pushed in. I think if I got this away from the house a few more feet, the SWR would come down on 20 & 6m.

 

BandCoilRed WhipBlack WhipRes FreqMin SWRHeightRed Orientation
20M20M3 + 10 in514.1751.512N
17M15/173 + 1.25 in518.1271.0612N
15M15/172 + 2 in321.2501.2412N
10Mnone4 + 5 in428.8501.1912N
6Mnone0 + 4.375 in051.8501.212N

 

I have made SSB and PSK31 contacts on 20, 17, & 15 meters. I have not made contacts yet on 10 or 6. Someday I’ll do that.

Below are the graphs from my antenna analyzer showing the antenna setup for each band in the table above.

20 Meter

17 Meter

15 Meter

6 Meter

 

Overall I am happy with the antenna. I don’t expect it to work like a full size dipole, but for the ease of setup and take down, it’s working for me. I have talked to South America, Europe and all over the US with both  the home-brew Buddistick and Buddipoles.

My email address is on my QRZ.com profile. If anyone has questions, I’ll be glad to respond to any email.

 



Wayne Patton, K5UNX, is a regular contributor to AmateurRadio.com and writes from Arkansas, USA. Contact him at [email protected].

ALTV Episode 67 stream

Who’s up for some AmateurLogic.TV streaming Thursday evening. Tommy and George will be putting the Dayton Episode together. Begins around 6PM CDT, 2300 UTC.
The show won’t be released until next month, but you can get an advanced viewing as we put it together.
The stream is live now. Watch it here live:

Chat room is at www.amateurlogic.tv/chat


George Thomas, W5JDX, is co-host of AmateurLogic.TV, an original amateur radio video program hosted by George Thomas (W5JDX), Tommy Martin (N5ZNO), Peter Berrett (VK3PB), and Emile Diodene (KE5QKR). Contact him at [email protected].

Time to play with GPS and Arduino

I’ve always enjoyed playing about with time. Accurate time is not really a fascination but I do like a clock to tell the time. The MSF 60khz time signal is one source and I have played about with that system with an Arduino and it works well, when there is a good signal for a whole minute. GPS time has always been a bit of a thing for me because you can set it to UTC and it’ll always show UTC and frankly there are a lot more libraries available to play with. GPS Tiny & GPS Tiny+ are two of those and this evening I ‘forked’ a sketch to use a cheapo off the shelf gps module to tell the time and date on a 16×2 LCD. Nothing spectacular but hey if I can do it then so can anyone. Here’s a short sweet video of it in action (near the window!)

sketch goes a little like this


#include <TinyGPS++.h>
#include <SoftwareSerial.h>
#include <LiquidCrystal.h>
/*
This sample sketch demonstrates the normal use of a TinyGPS++ (TinyGPSPlus) object.
It requires the use of SoftwareSerial, and assumes that you have a
4800-baud serial GPS device hooked up on pins 8(rx) and 9(tx).
*/
static const int RXPin = 8, TXPin = 9;
static const uint32_t GPSBaud = 9600;
// The TinyGPS++ object
TinyGPSPlus gps;
// The serial connection to the GPS device
SoftwareSerial ss(RXPin, TXPin);
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup()
{
ss.begin(GPSBaud);
lcd.begin(16,2);
lcd.setCursor(1,0);
lcd.print("Tiny GPS+ Time");
delay(3000);
lcd.setCursor(1,2);
lcd.print("by Alex, g7kse");
delay(5000);
lcd.clear();
}
void loop()
{
// This sketch displays information every time a new sentence is correctly encoded.
while (ss.available() > 0)
if (gps.encode(ss.read()))
displayInfo();
if (millis() > 5000 && gps.charsProcessed() < 10)
{
lcd.print("No GPS detected");
for (int positionCounter = 0; positionCounter < 20; positionCounter++) {
while(true);
}
}
}
void displayInfo()
{
lcd.setCursor(4,0);
{
if (gps.time.hour() < 10) lcd.print(F("0"));
lcd.print(gps.time.hour());
lcd.print(F(":"));
if (gps.time.minute() < 10) lcd.print(F("0"));
lcd.print(gps.time.minute());
lcd.print(F(":"));
if (gps.time.second() < 10) lcd.print(F("0"));
lcd.print(gps.time.second());
}
lcd.setCursor(3,2);
{
if (gps.date.day() < 10) lcd.print(F("0"));
lcd.print(gps.date.day());
lcd.print(F("/"));
if (gps.date.month() < 10) lcd.print(F("0"));
lcd.print(gps.date.month());
lcd.print(F("/"));
lcd.print(gps.date.year());
}
}


Alex Hill, G7KSE, is a regular contributor to AmateurRadio.com and writes from Cumbria, UK. Contact him at [email protected].

80 meter WSPR

WSPR 80 m tonight with 5 watts and my end fed wire.


Paul Stam, PC4T, is a regular contributor to AmateurRadio.com and writes from the Netherlands. Contact him at [email protected].

KDØBIK operating as W1AW/Ø

Colorado’s first week to host the W1AW/Ø portable station in celebration of the ARRL Centennial events has come and gone.  This particular week was a busy week for me both at work and in the hobby of amateur radio.  In addition to working two shifts operating W1AW/Ø, I also presented the Summits on the Air program presentation to two area amateur radio clubs.  Yes…I also managed to keep my streak of at least one QSO a day alive.

As Colorado began hosting the W1AW/Ø portable operations, we also fell right into the middle of a weather pattern which almost like clockwork the heavy storms would roll into the Denver area from the west.  These storms produced all your typical spring storm weather scenarios including rain (lots of rain in some areas), hail (enough to bring out the snow plows), thunder bolts and lightning (all very, very frightening) and yes…tornados.   Tornados are somewhat rare in the metro Denver area, but this particular week we had sightings just about every day.

My first shift to operate W1AW/Ø was scheduled to begin at 0000z on Friday, (Thursday evening local).  The storms rolled through Denver right on cue with tornado sirens and flashing of lightning around the area.  Below radar image captured about two hours before my shift would start.

photo

Thankfully the clouds parted just before the start of my shift.

photo

On time, I began calling CQ on 20m.  There had been a short gap between operators and our fellow hams were ready to attempt to work Colorado.  Quickly I built a small pileup and began operating the strongest stations I could hear.  I’m really glad I spent many evenings operating just as my own callsign and sharpening my skills in working small pileups.

If you’ve been listening to the HF bands in the past week or two, you certainly know conditions have been poor with noise levels very high on the bands.  Of course the storms which had moved through Colorado certainly were not helping with overall conditions.

My friend Martin, W3MLK was my first contact and he was kind enough to run a few minutes of video/audio and posted on YouTube.  Martin’s QTH is in Delaware.   Thank you Martin for recording my audio.

Watch this video on YouTube.

Statistically speaking, my Thursday shift was far easier and a lot more enjoyable as band conditions were stronger.  I managed 348 QSO’s during my three hour shift compared to only 156 on Sunday morning (1500 – 1800z).  While I’m not sure how this compares with other operators, I enjoyed my time operating W1AW/Ø and representing the Centennial State of Colorado in the ARRL Centennial Event.  It was a lot of fun!

OK….it’s now time to get back to work.  My lunch break is over and this is another busy week in the office.

Until next time…

73 de KDØBIK


Jerry Taylor, KD0BIK, is a regular contributor to AmateurRadio.com and writes from Colorado, USA. He is the host of the Practical Amateur Radio Podcast. Contact him at [email protected].

LHS Episode #129: Don’t Penetrate Me

nail-gun-footIn this episode of Linux in the Ham Shack, your mild mannered hosts discuss ham radio self-education, elmering and Hamvention. On the Linux side of things, we look at installing drivers for a Yaesu radio, and take a live look at a Debian-based distribution known as SolydX. There’s also lots of feedback, and a surprise visit by our ol’ pal Richard. Chaos ensues!

73 de The LHS Guys


Russ Woodman, K5TUX, co-hosts the Linux in the Ham Shack podcast which is available for download in both MP3 and OGG audio format. Contact him at [email protected].

Hoot Owl Sprint After Action Report

Disappointingly, there was not a lot of activity last night in the QRP ARCI Hoot Owl Sprint.  My guess would be that between the CQ WWPX Contest and Holiday weekend BBQs and other activities, that most folks were probably too pooped to pop.

I was on for approximately 2 and 1/2  hours, from 8:30 PM local time to 11:30 PM local time (0030 – 0300 UTC). I worked a total of 17 stations – mostly up and down the East coast.  I did work John N0EVH in Missouri and I did have a nice little QSO with Rumi LZ2R who was calling CQ USA from his QTH in Bulgaria.  He was running his K3 at 5 Watts and we were 569 both ways.  I think he was looking for counties, but I got the exchange needed for the Sprint, so as far as I’m concerned, it counts and it was by far my best DX for the night.

The last 1/2 hour, from 0230 to 0300 UTC was just me calling CW with no takers. That’s when I decided to pack it in for the night. The KX3 was plugging away calling CQ and I started nodding off a little bit. I’m sure if there was more activity, I would have stayed on until the allotted time was up, which would have been local Midnight (0400 UTC). But the rig automatically calling CQ over and over is kind of like driving down a long highway in the rain with the windshield wipers on. The constant rhythm of CQ with no breaks can kind of lull yout to sleep.

 According to Reverse Beacon Network, there is how I was being heard last night.

I spent just about all of my time on 40 Meters.  I did make one QSO on 80 Meters and three on 20 Meters, featuring the one with LZ2RS.  Other than that, everyone seemed to be concentrating on 40 Meters in the 7.030 MHz neighborhood. As far as antennas go, I was using mostly my 88′ EDZ on 40 meters and for my very brief foray into 80 Meters. On 20 Meters, I used the Butternut HF9V.

72 de Larry W2LJ
QRP – When you care to send the very least!


Larry Makoski, W2LJ, is a regular contributor to AmateurRadio.com and writes from New Jersey, USA. Contact him at [email protected].

Subscribe FREE to AmateurRadio.com's
Amateur Radio Newsletter

 
We never share your e-mail address.


Do you like to write?
Interesting project to share?
Helpful tips and ideas for other hams?

Submit an article and we will review it for publication on AmateurRadio.com!

Have a ham radio product or service?
Consider advertising on our site.

Are you a reporter covering ham radio?
Find ham radio experts for your story.

How to Set Up a Ham Radio Blog
Get started in less than 15 minutes!


  • Matt W1MST, Managing Editor