Cookies help us deliver our services.

We may use session cookies for technical purposes such as to enable better navigation through
the site, or to allow you to customize your preferences for interacting with the site.

By using our services, you agree to our use of cookies. OK
home QRZCQ - The database for radio hams 
 
2024-03-19 09:26:29 UTC
 

Call:

   Advanced
 

Call:

  

Pass:

  
 

or

 

Articles from and for hams

• WiFi HF Antenna Switch

Added at 2017-07-21 13:23:35

by VA6DTX



This article describes the design and construction of a remote WiFi Antenna Switch for HF that is an order of magnitude more economical than any wireless remote switch available today. It is limited in its power handling and frequency bandwidth, but I believe it is of great use for most of ham radio operators.



A Remote Controlled WiFi HF/VHF Antenna Switch

This article describes the design and construction of a remote WiFi Antenna Switch for HF that is an order of magnitude more economical than any wireless remote switch available today. It is limited in its power handling and frequency bandwidth, but I believe it is of great use for most of ham radio operators.

The ESP8266, a little wonder.
The core control processor for the switch is a WiFi enabled microcontroller from Espressif with a very small footprint, the ESP8266. It can be programmed in C by flashing it with the manufacturer’s (Espressif) software development kit (SDK). But it can also be programmed in LUA using the NodeMCU SDK (open source, just Google it or go to GitHub). LUA is a scripting language used widely in the gaming industry and I picked it to program the ESP8266 because of being compact, very high level and allowing me rapid prototyping.

The ESP8266 acts as an access point and/or a WIFI station, so once it is configured it acquires an IP address and then you can communicate with it via a web browser or a TCP connection (phone, tablet, computer, etc). It has 8 available GPIOs (input/output ports or general purpose input/output) available, which was not enough for this application, but that was all I had. 8 GPIOs means that we can program the module so it can read and write stuff on these GPIOs. The ‘stuff’ is simply digital signals, a 0 or a 1, or in volts, a few millivolts or 3.3 volts. This is perfect to drive LEDs or relays and make them open or close according to some logic and control, either running on the module or instructed via a web or TCP server.

The module also features a serial interface so you can communicate with it to program or debug it.

There is plenty of material out there to get anyone going with this little wonder. The key things to know is that you will need a USB to serial module to initially talk to the ESP8266, be familiar with serial communication and able to do some script programming. For USB to serial, any FTDI232 based module will pretty much work, but be careful as they are counterfeit FTDI232 that can render useless, make sure whatever you get is genuine. Then you need to choose a serial terminal to send commands to the serial module that will send commands to the ESP8266. Something like CoolTerm available at http://freeware.the-meiers.org/ would do the job. I use CoolTerm mostly on the Mac. Also, when you start copying LUA code into the module, CoolTerm does a great job. You can find more information, programming code examples and detailed instructions about setting up and programming the ESP8266 on http://www.horaciobouzas.com

With this brief introduction to the ESP8266, you can start having a lot of fun prototyping all kinds of interesting WIFI projects. For example, if you have equipment that you can control with digital signals, like a tuner, you can easily build a remote switch that can do the job!

Driving the relays
I looked at several relay types, and for this first version of the switch, I decided that going with something on the lower power side would be a wise choice, something that could handle 100-300 Watts. There is plenty of time to improve the design and make it robust for high power transmitters. I started with a 4 position switch (but eventually I would be upgrading to 8 positions), so I needed to drive 4 relays. The ESP8266 has 8 GPIOs, more than enough to drive 4 relays (will it suffice to drive the 8 positions switch?). Not so fast. I wanted to be able to remotely find out the status of the switch, so for this I will need to monitor the state of the outputs, hence I needed another 4 GPIOs to do this (or 8 additional GPIOs once I upgraded to 8 positions). This is a total of 8 GPIOs. Oh, I forgot, ideally I also need a GPIO to drive an LED and show when the unit was successfully connected to the WiFi router and effectively grabbed an IP address. So, 9 GPIOs are needed. Am I out of luck? No, I am not. What if I used a x-to-y line decoder? I just needed a 2-to-4 line decoder but since I had a bunch of the 74HC238 3-to-8 line decoder, lets use them, and connect the unused input line to ground. The ESP8266 GPIOs were going to feed the 74HC238 and provide the logic to switch the outputs, then these outputs will drive a Darlington power driver like the ULN2803; this is because we could not drive the relays with the output of the 74HC238. Just for the 4 position switch and to make it safer, I decided to split the 8 ULN2803 outputs into 2 groups of 4, one group feeding the relays, the other the indicator LEDs.

Lets look at how the GPIOs from the ESP8266 would be driving the 74HC238:

GPIO0 GPIO2 Relay1 Relay2 Relay3 Relay4
L L H L L L
H L L H L L
L H L L H L
H H L L L H

GPIO0 and GPIO2 are the outputs from the ESP8266 being feed to the inputs of the 74HC238 , and Relay1 to 4 are the outputs of the 74HC238 being fed to the ULN2803. The outputs of the ULN2803 are then driving the relays and the indicator LEDs

Monitoring the output state
I had 8 GPIOs available and needed 4 for controlling the relays and 4 for checking the output state, plus 1 more to show connectivity state, nine in total. I am one GPIO short. After using the 3-to-8 decoder, I was just fine, two GPIOs for the 74HC238, one GPIO for WiFi connectivity, four GPIOs for switch status, exactly seven GPIOs needed, one less than what I have available. Now, how about if I upgraded to eight positions? Then I would need three GPIOS for the 74HC238 (as I needed to use the three inputs for the 3-to-8 scheme, and not just two), one for WiFi indication, eight for switch output status, which gives me a total of eleven GPIOs. Way too many!
How about using a multiplexer to read the output state? If I used a multiplexer like the 74HC4052, for the four position switch I would need two GPIOs to drive the multiplexer switching, one GPIO to drive the inhibit and one GPIO to read the output. That amounts to four GPIOs needed. So the number of GPIOs was fine for a four position switch.
How about eight positions? We saw that I needed eleven GPIOs, and that was too many. If we used the multiplexer solution, we could choose the 74HC4051, then we would need three GPIOs to drive the multiplexer switching, one GPIO to drive the inhibit and one GPIO to read the output. That amounts to five GPIOs needed. Considering I needed three GPIOs for the 74HC238 and one more for the WiFi indication, that totals to nine GPIOs. Oh, no! We only have eight GPIOs available. Well, there is a solution. The ESP8266 has an analog to digital (ADC) pin, and I could use it to read the output status of the switches.
In summary, using a 3-to-8 decoder to do the switching and a multiplexer to read the outputs allows me to use the ESP8266 with eight GPIOs and an ADC pin both for the four position and an eight position switch, without having to redesign the electronics or the firmware programming too much.

Circuit Description
I split the antenna switch into two modules, the control module and the connector/relay module.
The schematics and more detailed description can be found on my website http://www.va6dtx.com


The final product
I programmed the ESP8266 so it can be configured via a web browser to connect to the WIFI router. Once configured, the module acquires an IP address and then I can communicate via TCP or HTTP protocol. The module responds to the simple commands 1, 2, 3, 4 to switch between the antennas. The command to switch the relays can be sent using a web browser or TCP commands can be sent from a laptop or computer using a simple utility written in Python, for example. If using a mobile device, there are apps that send and receive TCP commands. But better yet, I went ahead and wrote an iPhone app that specifically pairs nicely with the antenna switch. A simple command string ‘status’ returns the status of the outputs as a string of the form: 0,0,1,0 (output 3 is ON)
You can see pictures of the modules and the enclosure on my website http://www.va6dtx.com

3D printed enclosures

To bring a bit more of the new technologies such as 3D printing, I looked into printing enclosures for the control board and the connector board. Figure 7 to Figure 14 show the results of printing the enclosures. The 3D printing files (STL) are available at http://www.horaciobouzas.com
The connector enclosure should be a metal enclosure, but for experimenting, it was interesting to design and print both enclosure boxes. Hopefully soon 3D printers will be able to handle metal printing!

Final thoughts and future enhancements

I was impressed with the performance and flexibility that the ESP8266 brings. Its small and extremely powerful, and inexpensive!!! It can be programmed using standard C language or LUA scripts. It can even be programmed using the Arduino environment, but I did not go in that direction. If you are interested in the Internet of Things (IoT), this module will allow you to hit the ground running and implement all sorts of IoT solutions. It is truly awesome.

Next steps could be:
Increase the power handling to 1kW or more. The PCB board will have to be upgraded to handle this and I will need to find the right relays, keeping the cost down.
Build a 6x1 or even 8x1 switch. Although 2 of the 4x1 can be easily combined, I think a compact 8x1 would be really nice
UHF?




Comments or questions about this article can be sent to:
Horacio Bouzas (VA6DTX)
Email: horacio@snaptekk.com or va6dtx@gmail.com



• Today featured: flag of dxcc 130 UN8JNZ

image of un8jnz

• Hottest QRG on DX Cluster now:

28074.0 kHz on 10m band
DX  YO8CLX by  EA5GXY

• Websites supporting QRZCQ:


• Latest spotlessly clean profiles:


• Users with most worked DXCCs:


• Latest activated users:


• Latest activated SWLs:


• Latest news:

Special call PA01 mil until PA08MIL is…


Added at 2022-03-03 21:34:43 by PA11599


Sound recordist leaves lasting musical l…


Added at 2017-05-22 03:16:19 by VK2HEY


CQ-WW-DX -CW 2016 Portugal with CR5K


Added at 2016-10-24 12:52:34 by CT1BWW


CQWW on SI9AM


Added at 2015-10-07 17:01:12 by ON6UQ


FCC Eliminates Vanity Call Sign Regulato…


Added at 2015-05-24 18:50:38 by WC4R



• Latest articles:

Nowadays, more than ever, look for your…


Added at 2020-11-03 14:32:59 by CT1BWW


Be proud of your call sign and demonstra…


Added at 2020-10-30 14:24:14 by CT1BWW


WiFi HF Antenna Switch


Added at 2017-07-21 13:23:35 by VA6DTX


Alpha EZMilitary, Chameleon MPAS Side by…


Added at 2016-05-10 09:20:05 by OH8STN


4 receivers in a SWL Shack


Added at 2016-04-05 15:43:03 by F61112



• Latest videos:

Real Time Clock Raspberry Pi |…

OH8STN

ICOM IC-705

OH8STN

Emergency Backup Power for Gri…

OH8STN

The Evolution of Amateur Radio…

OH8STN

Grid Down Communications for P…

OH8STN

Man Portable Ham Radio Station…

OH8STN

JS8Call Messaging NVIS Communi…

OH8STN

Yaesu FT-818 FT-817 Portable G…

OH8STN

Yaesu FT-818 Review

OH8STN

DIY 576 watt hour Portable Sol…

OH8STN


• Latest event calls:


• Latest uploaded logbooks:


• Most active users:


• Latest Big Gun calls:


• Latest club calls:


• Latest DXpedition calls:


• Latest beacon calls:


• In memorial to SK:


  

Rev. 76d955ecd7