Monday, December 18, 2017

Adding an External Linear Amplifier Control circuit to your uBitx

Adding some big "shoes' to the uBitx!


So OK the concept of the Bitx and uBitx is to operate QRP and with the new design of the uBitx having 10 watts is an excellent power level for making contacts. After three days of operation on 40 Meters it was clear the uBitx needed some shoes. I have the shoes so the problem is how to control the external amplifiers.
 
The hack here is not new as I did the same thing about a year ago with the Bitx40 so it is a proven design.
 
First I looked at the uBitx Schematic and see that one of the pins on the Arduino is "HIGH" and by grounding that pin this causes a series of actions to put the uBitx into transmit. So now the problem is how key an external linear amp and do it in such a way that considers how to accomplish this without interfering with the normal operation of the uBitx and to also have an isolated control of the linear such that there is essentially a firewall between the uBitx and the amp. The hack should also not involve changing the sketch and be completely reversible.
 
A word here about the uBitx wiring. For over 60 some years my microphones have been wired so that the Sleeve on the microphone plug is ground, the Tip is the PTT control and the Ring is the Audio. All of my microphones are wired that way. The uBitx instructions have the Tip and Ring interchanged. That is not a problem so long as you wire the microphone jack and the microphone plug the same way. The construction photos initially through me for a loop as the Orange and Violet Wires on my Microphone Jack were reversed [in the photos] from the way I wired it. It was at this point I decided to read the instructions and sure enough Farhan made it clear that the microphone input was on the Tip. The sketch I will be providing is based on my standard and not the way Farhan has suggested. So LOOK at that carefully.
 
So here is the solution to add the linear control and the parts required are: two 1N4148 diodes (literally any silicon signal diode will work), a 12 VDC Reed Relay, some perforated board, two aluminum pillars, four 4-40 screws, two 2 Pin headers, 2 one inch pieces of heat shrink tubing and two lengths of insulated wire about 14 inches long. Finally you will need an RCA Jack installed on the back panel.
 
The two diodes are connected cathode to cathode and that common connection connects to the TIP connection on the microphone. One of diodes is connected to the Orange wire (anode end) that goes to the Raduino board. The other diode (anode end) connects to one end of the coil on the reed relay. Use heat shrink tubing so that after soldering the wires to the two anodes, the heat shrink tubing is slipped over the diodes and the wired connections --No shorts here.  The +12 VDC end of the Reed relay is connected to the 12 Volt rail at the power switch in common with the red and brown wires that go to the mainboard.
 
Essentially when the PTT is engaged both diode cathodes are grounded. On the Raduino side the PIN that was HIGH is now LOW and the uBitx is placed in Transmit. On the amp control side the Reed Relay  field coil is energized and the contact closes (short to ground) which is brought out to an RCA jack on the back panel. The two diodes prevent any voltages from being back fed into either circuit and effectively isolates the circuitry.
 
My uBitx now has some "big shoes". With this arrangement I can run a small solid state amp at 100 Watts or add in a Heathkit SB200 on top of that for 600 Watts to the antenna. I no longer get reports on 40 Meters "you sound really good only not much signal". Now I can use the uBitx to Run with the Big Dogs. On 20 Meters running just the uBitx I can hit about 700 watts using my homebrew 3CPX1500A7. Life is too short for QRP! 
 
 
 


 
 
73's
Pete N6QW

Saturday, October 28, 2017

Raduino as NBFM TX


Here is a neat, 30 minute hack for your Raduino to turn the Si5351 into a pretty stable, solid NBFM transmitter. The hack is to add a varactor diode in series with the reference crystal oscillator and drive it with audio. I used a very simple audio amplifier to boost up the audio. Here is the circuit:

Attach a small piece of wire to clock 2 to radiate the signal. Here is the sketch :

/**
 * This source file is under General Public License version 3.
 */
#include <Wire.h>
#include <si5351.h>
Si5351 si5351;

void setup()
{
  int32_t cal=0;
  
  si5351.init(SI5351_CRYSTAL_LOAD_8PF,25000000l, cal);
  si5351.set_correction(cal);  
  si5351.set_pll(SI5351_PLL_FIXED, SI5351_PLLA);
  si5351.set_pll(SI5351_PLL_FIXED, SI5351_PLLB);

  //si5351.drive_strength(SI5351_CLK2, SI5351_DRIVE_2MA);
  si5351.output_enable(SI5351_CLK0, 0);
  si5351.output_enable(SI5351_CLK1, 0);
  si5351.output_enable(SI5351_CLK2, 1);

  si5351.set_freq(14500000000l,  SI5351_CLK2);   
  
  delay(10);
}

void loop(){

}

Thursday, August 31, 2017

Ergonomic BITX Enclosure -- 3D Print


Wow, Michael's amazingly cool BITX enclosure looks like you could use it to ask Scottie to beam you up. 
Put an end to those freakish contortions -- 3D print yourself an Ergonomic BITX box! Very FB Michael. Thanks. 

Hi Bill and Pete:

I thought you’d be interested to see my ergonomic enclosure for the BITX40. While operating homebrewed regen radios, I noticed that my hands/arms/shoulders were becoming uncomfortable after a while. After thinking about this for a few days, I realized that the dials on the front of these small radios were forcing my hands into freakish contortions—and having both hands on the dials at all times while tuning made matters worster faster! So I did some homework and determined that our arms and hands most naturally hold things toward each other, as though they are holding a small cylinder by the ends. But the conventional “dials-and-speaker-facing-front” radio case forces us to twist our hands up and outwards from our bodies to twist things. See my blog post http://blog.generaleccentric.net/?p=2009 for illustrations of this problem.

My enclosure design for the BITX40 re-orients the volume and tuning knobs toward the sides of the radio, making their operation much more natural—and pleasant. Although it’s not retro, it does have an unconventional appearance and should fit in quite naturally with all the other homebrewed solutions featured on SolderSmoke. 

You can visit my post at http://blog.generaleccentric.net/?p=2082; the box is available for download and printing at Thingiverse: https://www.thingiverse.com/thing:2508147

By the way, I also have a 3D printable mic for the BITX40: https://www.thingiverse.com/thing:2500483

73, Michael VE1LEB

Saturday, August 26, 2017

Speech Processor and Antenna Tuner/SWR meter for BITX



Check out the blog of homebrew wizard K.P.S. Kang.   OM has a nice speech processor based on the LM386.   He also has a very simple antenna tuner and SWR bridge.  FB OM.  

http://smallwonderqrp.blogspot.com/2017/08/two-essential-add-ons-for-bitx-and.html

Monday, July 24, 2017

KC8WBK's Cakepan BITX Enclosure and PVC Mic/PTT Grip


I talked to Paul KC8WBK last night during the regular 7277 kHz Sunday night BITX gathering (7 pm local). I like his BITX enclosure.  Very practical and economical.  It provides ready access to the circuitry.  He also has nice enclosure for the microphone and push-to-talk switch. He has more info on his QRZ.com page. 


Thursday, June 1, 2017

KY3R's Metalized Cigar Box BITX Enclosure


Bob KY3R writes:

Bill:  I was watching your visit with Farhan, and you mentioned your penchant for building projects into wooden hobby boxes, and using copper  flashing for shielding. I want to share my solution. 

I snatched up any old cigar boxes I come across. For shielding I use "metal repair tape." This is the stuff used for joining or repairing dryer lint vent ducts, and it is available at any hardware store. Very lightweight, and you just cut the desired lengths, peel off the backing, and press onto the inside of the box. The only drawback is that it is aluminum and doesn't take solder very well, but it is easy enough to add one or two short lengths of wire from the circuit ground plane to a terminal bolted down onto the case interior. 

The attached photos show my current project--a Por Larranaga cigar box in the process of being converted into a home for a BitX-40! I haven't yet fully decided exactly how to position the unit in the box, but as shown in one of the potos, it fits with plenty of room for later mods. As for other decisions, I toyed with the idea of painting or covering the outer box, but I am leasing toward leaving the original cigar box labeling. Arguable adds a bit of "soul," plus who needs a clean panel and all that fancy stenciled lettering anyway.I'll know which knob is which! <g>

73, and as always, thanks to you (and Pete, of course) for your continued work on the SolderSmoke  podcast.

Bob Keller, KY3R




Thursday, April 6, 2017

Hot Water BITX 40 Hack

Fred's idea really resonated with me.   My first SSB rig was an HW-32A, the 20 meter version of the rig shown above.  If -- as I suspect -- these rigs are anything like the HW-101, they are not aging well. Heath's drive for economy resulted in rigs that don't hold up to well over time. I remember the sound of the  plastic HW-101 dial clutch cracking when I pushed the button.

BITX40 Modules to the rescue! Put a mono-band board inside an old mono-band rig.   There are a lot of possibility here.  Some ideas:

-- Put that Heath VFO to use.  Maybe convert it to solid state.  Or just put the LCD from an Si5351 in the window (Pete did this with an HW-101).

-- Get the S-Meter wiggling.  

-- Keep the final amplifier circuitry in there and let the BITX drive it.  This will give you a QRO option.  Bill N2CQR 

Hello Fellows,
Attached is a picture of my BITX-40 V3 adapted to a Heath kit Single Bander HW22. This is a work in progress but what a neat way to bring an old boat anchor into the present.
 
The only parts of the HW 22 used were the front panel and case and knobs. Modifications yet to be  incorporated include: AGC , a USB port on the front panel to access the Arduino, and a PTT/CW mode switch.
 
I enjoy your pod cast and web site…Best of 73 KC5RT.