Sunday, 24 September 2017
Saturday, 23 September 2017
Sunday, 17 September 2017
Tuesday, 12 September 2017
Thursday, 7 September 2017
Simple 70cm Fox Hunt Reciever
The reviever is contructed around the MX-RM-5V module which operates on the 433.92Mhz ISM band. Again using parts from the junk drawer I came up with this simple circuit.
The circuit runs from a 6v battery pack (4x AA Cells) and utilises both audio output via headphones and visual feedback from an LED. The main component is a BC547 NPN transistor, however pretty much any NPN transistor could be used. Output from the transistor provides just enough current to drive the headphones without the need for an audio amplifier but a simple single IC solution like the LM368 could be utilised. Now I must note the 433.92Mhz ISM band can become extremely congested and this will reflect on the receiver, however as we plan to use it in a large country park it should not be much of an issue.
I originally wanted to build a simple 70cm Yagi from a tape measure, however decided the sharp edges were not child friendly so I came up with the idea of using copper self-adhesive tape on a pre-constructed frame. The frame is built from 15mm pine and contains a director, driven and reflector element. The design shown below used pre-cut pieces that can be sandwiched to produce the yagi frame.
Each element is 400mm long, the inital spacing is not important however the 100mm and 80mm spacings between the director, driven and reflector elements is important. The overall length of the frame is also users choice but should be long enough to accomodate the pcb/battery and handle.
Copper tape is then stuck on to each element for the total length, this can then be cut to 'tune' the antenna. The middle 'driven' element needs to be cut in the middle to isolate the two halfs of the element and can then be soldered directly to connect the reciever. The follow lengths are what worked best for me, but feel free to play with them;
Director: 306mm
Driven: 312mm
Reflector: 360mm
I used a cheap plastic lunchbox to house the electronics and co-axially mounted the battery pack, this doubles in purpose as the unit lacks a power switch. The clear plastic of the box also negated the need to externally mount the LED.
If anyone has attempted to build this project or improved on it I would love to hear about it!
Simple 70cm Fox Hunt Transmitter
While discussing with a few friendly hams about the coming summer we
came up with the idea of running a fox hunt for the kids, so I set about
looking at how we could do this.
Ultimately we needed a transmitter and receiver that
could be easily constructed and operated by children. Fortunately I came
across these cheap UHF transmitter / receiver pairs whilst browsing Amazon..
The pair labeled XY-FST-RX / MK-RM-TX can be had for only a few pounds
and are available in the 315Mhz, 418Mhz, 433Mhz and 915Mhz frequency
bands, so out of interest I purchased a few of the 433Mhz (70cm)
varients. The modules operate with AM on 433.92Mhz ISM band which is
fortuently license exempt (power limit!) in the UK and are designed for basic data
transmission (The band is popular for car remote locking, wireless
doorbells, etc). The emitter has 3 pins (Vcc, Data, Gnd) and a pad
located in the top right for an antenna, however I have seen the same
module with four pins (Vcc, Data, Gnd, Ant). Likewise the reciever
follows a similar layout and has four pins (Vcc, Data0, Data1, Gnd)
however upon inspection the two data pins are actually bridged.
After breadboarding the emitter and manually pulsing the data pin whilst
monitoring with the HT it became clear that oscillating the pin with an
MCU could be a viable method of producing a crude CW signal. I
eventually came up with this circuit using parts from my junk drawer and
an Arduino Nano MCU.
The circuit is very simple, with power being provided from a 9v PP3
battery and the datasource being provided by a PWM digital pin on the
arduino. I added the LED for visual feedback. Those looking to reduce
costs could probably use an ATiny MCU or PIC instead. The circuit was
built onto a scrap piece of copper veroboard, without any antenna. I
wrote a simple sketch to test my thoery, by interpreting morse: 0 -
pause, 1 - dit and 2 - dah to control the timing of the pulses.
//msg = FOX HUNT M3RKV
int msg[]={0,1,1,2,1,0,2,2,2,0,2,1,1,2,0,0,1,1,1,1,0,1,1,2,0,2,1,0,2,0,0,0,2,2,0,1,1,1,2,2,0,1,2,1,0,2,1,2,0,1,1,1,2,0,0,0};
int i;
int t;
void setup() {
// Setup Pin 3 (PWM) as output
pinMode(3, OUTPUT);
}
void loop() {
for(i=0; i < (sizeof(msg)/sizeof(int)); i++){
delay(200);
if(msg[i] == 0){t=800;} //Pause
if(msg[i] == 1){tone(3,1200,100);t=400;} //Dit
if(msg[i] == 2){tone(3,1200,300);t=600;} //Dah (3x dit)
delay(t);
}
//Pause between Messages
delay(5000);
}
int msg[]={0,1,1,2,1,0,2,2,2,0,2,1,1,2,0,0,1,1,1,1,0,1,1,2,0,2,1,0,2,0,0,0,2,2,0,1,1,1,2,2,0,1,2,1,0,2,1,2,0,1,1,1,2,0,0,0};
int i;
int t;
void setup() {
// Setup Pin 3 (PWM) as output
pinMode(3, OUTPUT);
}
void loop() {
for(i=0; i < (sizeof(msg)/sizeof(int)); i++){
delay(200);
if(msg[i] == 0){t=800;} //Pause
if(msg[i] == 1){tone(3,1200,100);t=400;} //Dit
if(msg[i] == 2){tone(3,1200,300);t=600;} //Dah (3x dit)
delay(t);
}
//Pause between Messages
delay(5000);
}
As you can see I used the tone() function to produce the signal
required, where the first parameter is the Pin used, the second is the
frequency and the third the duration in mS. I will come back here at
soon to revisit the code and improve it but for the purpose of testing
it does suffice.
Sure enough, tuning my HT to 433.920Mhz allowed be to hear the crude
signal being produced and even without an antenna I was able to move
around the house and outside without complete loss of the signal,
however even when placed directly next to the emitter the AF signal was
not strong enough to break through the squelch on my HT dispite it being
on the lowest possible setting.
The enclosure is a standard project box and provides enough space for
the battery, PCB and antenna. The antenna is a simple J-Pole designed
for 70cm and made from 18SWG enameled copper wire. Moving forwards it
would probably be a good idea to terminate with an N-Type connector so
that multiple antenna configuration can be used.
Sunday, 3 September 2017
Virtual Build a thon 2 / 70 Diplexer surface mount kit video
You can order the kit from Janilab: Click Here
Make sure you ask for it as a kit, or it will be shipped complete ;-)
Presented by Bob M6FLT / KG7VZD (above)
Here is the board as constructed by Chris G0JPS (above)
Here is the board as constructed by Matthew M0ZKK (above)
Andrew DL1UGH doing the live build
Meanwhile in Florida Kevin KK4YEL is battling a storm of his own...You can hear the rain and thunder from his shack....
Maurice G4YHE
Michael G0POT joined us and kept the questions and the banter going
Rolfe james above with his completed diplexer kit
Kevin KK4YEL built and tested a successful diplexer kit, but still hates SM components
Saturday, 2 September 2017
Friday, 1 September 2017
Subscribe to:
Posts (Atom)