Sunday, April 05, 2009

Tecsun PL-600 short wave radio review

A bit of international travel has re-ignited my interest in short wave radio listening.

A long term portable Sony radio user, I bought the Degen DE1103 about a year ago and while very impressed with its sensitive reception, it has some serious usability problems - not the least is the lack of a volume control (well you push a button then spin the tuning dial).

The Tesun PL-600 is larger than the Degen by about 1cm in both height and width and very slightly thicker. Powered by four AA batteries and supplied with 1100mA Hr cells and a switch mode power supply.

front.jpg


Like the Degen, this radio can charge the internal batteries and has a simple timer mechanism to stop charging after the right amount of time.

The display is simple and clear, showing the frequency, time (or memory), a five segment S meter, battery state, bandwidth and other status information.

The decent sized tuning knob on the side is smooth and has fast or slow modes. There is a large volume knob and a large BFO knob with a centre click.

SSB.jpgClearly the ability to receive single sideband is a major selling point as it's shown in big letters on the front.

Similar to the Degen, this radio has two alarm timers and a sleep timer, where it turns off after a period of time. I use the sleep timer all the time to play the radio as I go to sleep but not run all night and go flat.

When I first used the radio it behaved bizarrely until I pushed the reset button in the base with a bent paper clip.

The frequency can be set either by direct keypad entry or by stepping up and down through popular bands and then tuning with the knob.

sideknobs.jpg


Frequency range is 76-108MHz FM, MW (either 9kHz or 10kHz steps), and 1711 - 29,999KHz on short wave.

One button rolls through FM, MW and LW, another rolls through the short wave bands. Each short wave band is shown in wave length as well as frequency.

There are 600 memory locations, which is pretty silly, but it's easy to store favourite frequencies in the memories. The unit can be switched between "freq" or "preset" mode. In "freq" mode the tuning dial rolls through memories and the key pad can be used to directly select memories by keying the number.

I like the Sony 7600 system where low memories can be chosen with just one key press, on this radio you must key Zero One to choose a location. One button choice would be nice.

Single buttons are provided for Power, time, timer a, timer b, light/snooze, tuning speed/lock, freq/preset select, SSB, FM stereo/bandwidth.

On the side there are switches for antenna gain, and audio tone.

sideswitches.jpg


There's a 3.5mm stereo earphone socket, a 3.5mm antenna input plug and a 6V (tip negative!) DC input.

In the box, there's a nifty long wire antenna on a flat spool with a clip for the curtains, also there's a rather poor stereo earphone set.

antenna.jpg


Comments

Audio quality is not great, on FM the treble is good but bass is boomy and there is some distortion. AM band audio is quite bad on local stations due, I think, to signal overload. The antenna attenuator switch has no effect on MW reception and here in the city many stations sound overloaded. Distant stations sound better but still distorted.

Audio distortion probably doesn't matter too much for short wave listening but I couldn't recommend this radio for music appreciation.

Listening to FM on headphones indicates that the loud speaker is somewhat at fault although it's clear that high frequencies are rolled off quite early on FM.

Tuning is nice and smooth, unlike some of the Sony radios, there's no noticeable chopping as you spin the dial.

Although I do use the sleep timer (where the radio plays for a settable time and then turns itself off) this feature remains mysterious despite the well written manual. For some reason it often triggers when I turn the radio on and I can't figure out how to turn it off.

Another annoyance is that the narrow bandwidth selection in short wave carries over if you switch to MW.

Sensitivity is claimed to be 20uV on short wave and certainly it's sensitive enough to hear band noise which is all you need. I'd love to see a decent AGC in a portable radio like this one day.

Here it is listening to the WIA Sunday broadcast just using the whip antenna.



The side band BFO adjustment is a little sensitive, but usable.

Conclusion

This is a well designed, sensitive portable radio, well suited to folks like me who want to travel and listen to short wave. Let down a bit by audio quality and overload on MW, some usability complaints and the noisy switch mode power supply that came with it from AV-COMM.

letter.jpgAmusingly, along with my radio came a letter, dated April fools day, from AV-COMM's Technical Director Garry Cratt, stating that they do not warrant the radio if you run it just from the supplied power supply.

This seems rather poor as I would certainly regard the ability to run plugged in with the supplied adapter as a core feature. I can only assume that they've been coming back damaged.

I paid AU$179 at AV-Comm which seems a little high given that the big value-add is the power supply which they feel will damage the radio if used. They are available for direct import via Ebay sellers from AU$127 including shipping.

Despite these quibbles, I like the radio and will take it on my next trip.

Update: use in the field

I'm travelling with this radio and I have to report that I'm finding the internal charging feature just doesn't work for me. Not sure if it's the radio itself, or more likely, the supplied plug pack.

You set it to charge and it does so for only a few minutes before stopping. Consequently the batteries never get much of a charge. I've tried changing the setting for mAhr in the radio but this has no effect.

My guess is that the switching power supply somehow confuses the radio's circuitry that detects full charge in the batteries.

The other issue is hardly surprising, the switching supply (that I have to use as the batteries don't get charged) creates so much electrical hash that shortwave is un-usable.

Today I went out and bought some AA primary batteries.

Update2

Sony makes a few great products, among their best are the AA battery chargers. I purchased one with an LED to show the status of each cell. It also allows a deep discharge cycle to reset the "memory" effect. The charging is very fast, perhaps two hours.

I roll between two sets of 4 AA batteries, each set runs the radio for a couple of days of pretty heavy use and this scheme works well.

Despite having the long wire antenna dangling out of my tenth floor window, my conclusion is that this radio is not sensitive enough. Over night I often cannot hear band noise and I'm sure there's stations there I'm missing.

One daily pleasure is listening to Radio Australia on 11840KHz in the morning. AM is on from 6am local time, there's "Breakfast Club" and my old favourite "Connect Asia". The signal belts in here in Kula Lumpur.

Excellent to hear a presenter, Phil Kafcaloudes, who knows the international phonetic alphabet by the way.

Long live RA!

Monday, March 23, 2009

Working without root access

For so many years I've worked with unix machines where I've had root access. To be honest I've got a bit slack, it's so easy to install software, libraries and python modules as root and I'd forgotten that you can live without root access and have the environment you want.

Naturally there is a security benefit to installing everything possible with just user rights.

My own bin path

Create a bin directory in your home directory.

Add this to ~/.bash_profile:


export PATH=~/bin:$PATH


So my local binary is favoured over the system ones.

When building with configure, use this option to build and install in your own $HOME.


./configure --prefix=$HOME


When you do make install, everything goes in ~/bin and ~/lib

Personal python modules

When installing a python module use this:


python setup.py install --home $HOME


Watch where it installs the files and in ~/.bash_profile add a line like this:


export PYTHONPATH=$PYTHONPATH:~/lib/python



rsync to a machine with my own rsync binary

When deploying software I like to use efficient rsync to copy over what's changed. If the remote machine doesn't have rsync installed, you can install your own copy in your own ~/bin directory and use rsync over ssh while telling it where your binary is at the other end. Here's the trick:


rsync -avz --rsync-path=/home/$USER/bin/rsync $SOURCE_PATH $USER@$DEST_HOST:$DESTPATH


So the --rsync-path is set to the path to an rsync binary at the other end.

Any other handy tips?

Friday, March 20, 2009

Django is Awesome

Unlike the computer systems at this airport in Malaysia, Django is Awesome.

photo.jpg


I've been using the neat trick of simultaneously gathering requirements and turning them into Django "Models" (which are object wrappers for database tables). This allows me to immediately show a lovely Admin user interface and try entering data.

Entering data into a new schema is an excellent way of finding out what you've forgotten and where the foreign keys should be.

For the first time, I'm using Django's Model Inheritance which makes it much easier to model the real world.

The only danger is that the customer sometimes thinks the software is virtually complete.

Three weeks working in Singapore and Malaysia is coming to an end tomorrow. Some things I saw:

  • Food is cheap, I've been having a hearty lunch for about AU$3

  • One low cost airline charges you AU$40 if you have any luggage at all

  • One of my workmates was robbed of his cellphone and laptop as he slept in his car near a toll plaza with a window down a bit

  • While the economy may be down, the building of hi-rise apartments seems to be booming

  • Most of the internet connections here, even in businesses, have high packet loss

  • Traceroutes from Malaysia to Australia sometimes go via Japan. IP geocodeing sometimes puts me in the middle of Paris

  • There is massive over air conditioning here. Often you go from steamy outside to freezing taxis to steam to freezing offices. I went out and bought a coat. I wonder what the electricity consumption per head is?



  • All good fun, looking forward to getting home.

Tuesday, March 17, 2009

If the Internet is oxygen, I'm suffering anoxia

I'm currently working in Malaysia, home of the Internet Super Corridor.

When I moved into an apartment with broadband supplied via an ethernet socket in the wall. It didn't take long to realise that the service was bad.

Picture 1.png


It's not just at the apartment, at a local cafe I tried to sign up for a Wifi service AIRZED. After messing about for around two hours I gave up and emailed them from elsewhere:

"I could not log in to your service after registering and paying.

Please cancel my account and refund the payment."

They wrote back:

"Please accept our apology.
It was due to some techical errors on the billing system which did not capture the payment made.
I have manually updated your payment into the system. Could you please try whether it is working now.


Regards,
Ivy Chan
Accounts Dept
Airzed Broadband Sdn Bhd"

Can you read Ivy?

Apparently not. My money's gone and I'm not at that particular cafe any more.

The PJ Hilton's room internet was pretty bad (but not as bad as at this apartment).

Oddly, the best internet service I've experienced was wireless when I tried a Wimax modem.

I complain about the Internet in Australia but after spending time in marvellous Malaysia, maybe things aren't so bad.

It is time for quality of service guarantees for internet connections.

Thursday, March 12, 2009

8Mhz IF notes from VK3EPW

Regular readers will have seen that I've been publishing construction notes from Peter, VK3EPW for his multi-band transceiver.

He's just sent me detailed notes on the 8Mhz IF section which I've incorporated into the original posting here.

Aside from the electronics theory, Peter's construction is simply wonderful with circuit boards laid out manually with Dalo pen and shielding compliments of Milo tins.

if.jpg


Thanks Pete.

My Tracks - nice Android App

The Google integration really is useful. Grabbed a little App from the Market called My Tracks that records your travel and then allows you to send direct to Google My Maps.


View Larger Map

That's the taxi ride from where I'm working to where I'm staying. Wish I'd collected more of them, you get some interesting deviations catching taxis here.

Liking the G1 but it doesn't take much data and GPS use to run the thing flat within a day. This tends to happen when I'm in a taxi and we're both lost on the way home.

Monday, March 09, 2009

Getting through registration on an unlocked G1

Purchased an unlocked T-Mobile Google Android HTC G1 phone over the counter in Singapore. It worked when I put my roaming Telstra SIM into it, great.

But, silly me, I did a factory reset on it to start fresh - it was cluttered with all sorts of junk from whoever unlocked it.

After a factory reset it reverted to just knowing about T-Mobile APNs and demanding that I authenticate with a Google account. Wifi is off and inaccessible, and of course it can't get to the network using T-Mobile APNs.

So I was stuck.

After much research (mostly incorrectly searching for how to bypass registration), here's the trick that worked for me.


  • Turn off the phone (hold the hangup button)

  • Hold down, and keep holding the Menu button while powering on

  • After the Android splash screen, you can let go of Menu when you see you're in SAFE MODE

  • Press Menu and you'll see an APN button, press that

  • When the list of T-Mobile APNs shows up, press Menu again and you'll get the option to add your carrier's APN

  • Make sure you get the MCC and MNC numbers right, that's how it decides which APN to use. Mine came up automatically but I've seen another phone that had the wrong ones.

  • Turn off the phone. Turn on the phone as normal (no Menu hold down).

  • Go through the intro and register a Google account, or make one if need be.



After all that I'm happily doing 3G data on a Maxis SIM in Malaysia. I notice that automatic setting of the time didn't work but that is no drama. Great toy.

A big walk around Singapore and a G1

weather.jpgTook the opportunity of a Saturday off to take a big walk around Singapore. In the end I walked for about four and a half hours.

Oh, looks like it's going to be a bit hotter on Sunday, better dress for that!

Starting where I stayed near the Tanjong Pagar MRT station, along South Bridge road, left at Cross street, along Havelock, over the river on Kim Seng Road, right up to famous Orchard Road in the North.

Walked the length of Orchard Road turning right at Rochor Canal Road to arrive at my destination, the shopping centre of technology Sim Ling Square.

I got to Sim Ling at 9:45 and it was mostly shut. There was a street market near by so I hung out there until things opened up. Most of the shops didn't open until about 11am.

Picked up a little box that plays video, such as DivX encodings into your TV. It has a USB host connector and an SD card reader. It does a pretty good job but I feel it is under powered and perhaps skips every other frame but it will do the trick.

Back down to Victoria Street, South Bridge Road and home. Maybe just a lazy 10Km walk but it passed easily with all the entertainment of looking around a strange, for me, city.

shooting.jpgSingapore certainly is tidy and organised. The toll card system is impressively widespread. Like many asian cities with English signs, there's a war on the plural. You see "beware of pedestrian" as just one example.

Later we visited Lucky Plaza where TMobile G1 Android phones are on display and sell for SG$800 (7% of which is refundable GST at the airport).

If I hadn't used an iPhone, this phone would have been a revelation but up against a very polished competitor it's clear that there is still some work to do.

Screen and touch screen is very nice and responsive. We all struggled to guess where certain settings might be in the menus. The little keyboard is handy but I'm not sure that the extra depth of the device makes it worth it. It's narrower and thicker than an iPhone and doesn't sit in the pocket as well.

gphone.jpg


When the screen is swivel/slid up to expose the keyboard it won't lie flat on a surface while you type so I guess you are meant to hold it in one hand and peck with a finger.

I have a couple of Google accounts, I set up for one and then wanted to change but couldn't see how. In the end I did a factory reset.

Google's phone platform is a welcome addition to the marker, HTC makes some fine hardware under a couple of brands but the iPhone is still the benchmark in my book. Funny how the absence of multitouch, scroll physics and an accelerometer make quite a difference.

Update: it looks like it has an accelerometer but just doesn't use it for obvious things like screen rotation.

Thursday, March 05, 2009

On the road in Singapore and Malaysia

Not much time for blogging at the moment. I'm working in Singapore and Malaysia. It's great to be back, in particular Malaysia is an old favourite.

Malaysia.jpg


Normally I go into the ABC's Ultimo studio to talk with Fran Kelly on Radio National breakfast but rather than either missing a spot or doing it over the phone I conspired with Roi Huberman to do the item over the phone while I recorded my audio locally and sent him the file.

Roi then skilfully glued the two tracks together.

Aside from some mic popping at my end I think it worked out rather well. Sounds like I'm there.

The amazing bit is that I'm using a Verbatim brand headset mic that cost just $12. They seem to have a particularly good microphone but do fall apart pretty quickly.

Back in Singapore, I'm running a workshop on the Google Maps API and staying in an apartment on the 44th floor, pretty spectacular when there's interesting weather.

Singapore.jpg


At night the sound of bad karaoke singing can be heard through the walls. Last night it was "I will survive" for hours.

All going well as long as I don't explode from all the food.

Food.jpg


My news addiction is being satisfied by tuning in to the BBC world service on 9.740MHz. Seems strange hearing a super strong station on short wave. Presumably there's a local transmitter.

The boss picked up a couple of HTC Google Android phones today, they do look very nice but the keyboard keys are rather small. I'll have a better play and report back soon.

Saturday, February 28, 2009

Multi-language madness

Picture 2.pngRecent weeks have been dominated with work rather than hobbies.

In the current climate I'm pleased to be fully employed. I'm working on a very ajaxy web application and jumping between PHP, Javascript and python which is driving me slightly around the bend.

When doing modern web development you realise just how vital a tool FireFox with Firebug is, but this week saw the release of a beta of Safari 4. Safari's built-in tools are getting really good and partially because of the speed I've moved over to it for my primary testing, debugging and general web use.

If, like me, you had the Growl notifier for Mail.app installed you'll find that Mail crashes right away after you install Safari 4. You need to remove the growl plugin from ~/Library/Mail/Bundles/.

For the last few years I've been working in Python and using the Django web framework. The project I've just taken over is built with an excellent PHP framework called CodeIgniter.

Like any MVC style framework there are two immediately good things: there's a place for everything and everything has it's place, and you do get some good stuff for free. It certainly helps someone coming to an existing code base to quickly be able to guess where in the tree parts of the code are.

I like CodeIgniter, but Django is a hard act to follow and I find myself comparing how few lines of code would be needed to do each part in Django/python. PHP just feels like a mess of a language and library compared to python.

The tools I'm using mostly at present are:



I'm off to visit my end customer in Malaysia tomorrow, it will be interesting to see how the "multimedia super corridor" is faring these days.

Monday, February 23, 2009

New kitchen radio AWA Radiola 565MA

Picked up my new valve radio last night.

Radio.jpg


A magnificent item of architecture I hope you'll agree. Many of the original capacitors have been replaced and internally condition is excellent.

Here it is tuned to 2FC, err ABC Radio National. Hums a bit but sounds very official. Great to see some 1950s technology still going strong.

Saturday, February 21, 2009

80m dipole antenna back up

Over the past year or two I've been incrementally improving my HF antenna situation here. I've pushed higher and higher and on a windy night early in the week it came down.

Luckily I still had a spare line over the branch of the gum tree out the back and was able to get it back up again pretty easily (the hard part is getting the line high into a tree).

The configuration looks like this:

antenna.png

There's a magnificent tall gum tree in the neighbour's yard at the back and a tree in the street in the front. Happily the power runs down the other side of the street.

The central support is a netball hoop base, with a steel pipe and then a long two part extension from a pool cleaning pole. It's guyed on the sides and the dipole forms the other guys kind of.

The antenna consists of a 40/80m trap dipole and I have a 20m dipole off the same balun going at another angle. The extra 20m dipole detuned the 40m part a bit but hasn't affected 80m.

In fact I'm getting terrific reports on 80m with many stations in a net saying I have the best signal of the group. In the Friday night, 8:30 QRP Natter Net on 3.615MHz, both Barry, VK5BLS and Gerard, VK4TGL were complimentary. I dropped to 25W and was still quite strong.

As Gerard said, "if your antenna stays up - it's not big enough".

Monday, February 16, 2009

Antique radio collectors

Local ham Rob, VK2ZNZ called me after the Sunday broadcast to propose an excursion to visit some chaps he met at the Historical Radio Society of Australia.

First stop was Joe and Anne's place where the decorative furniture included this amazing cabinet radio.

DSC01857.jpg

Joe spend many years working on ships and has built boat style storage spaces throughout the house for storing radio restoration parts including a huge range of valves. Here's the view up a trapdoor above the loo into some previously wasted space.

DSC01868.jpg

DSC01872.jpgOff a small but lush garden, the workshop is actually a tiny cupboard like space but is surrounded with all the parts he needs easily at hand.

Throughout the house there is no wasted space that is not filled with bits and pieces, this includes the attic all the way down to a crawlspace under the floor.

Upstairs there's an official long wire antenna that looks like it might do for transmitting too.

DSC01886.jpg

Valves are even stored under each bed.

DSC01883.jpg

So no bouncing I guess. Lots of drawers are full too.

DSC01880.jpg

Everywhere.

DSC01891.jpg


If you want something, it gets looked up in the catalog..

DSC01894.jpg

Ah.. it's in a box under the floor near the front door, off we go.

DSC01904.jpg

There it is!

DSC01896.jpg

Next we were off to visit Jack, he also has an extensive collection of valves.

DSC01914.jpg

Now Jack was quick to say that he's not a radio collector but he does seem to have accumulated a few sets.

DSC01915.jpg

In several rooms.

DSC01916.jpg

Around the house.

DSC01917.jpg

Here's radios for listening to while doing the washing.

DSC01918.jpg

I found a set to buy, Jack turned it on and wasn't happy with the sound so got to work fault finding.

DSC01930.jpg

I'm going to collect it next week.

DSC01935.jpg

Thanks Rob, Joe, Ann, and Jack for a very entertaining Sunday afternoon.

Tuesday, February 10, 2009

I want my GreenPlug

greenplug-widget.gifWe have dozens of little power adapters, sometimes I want to use a gadget, but can't locate the particular plugpack or special little charger that it needs to live - the device becomes useless.

GreenPlug came to my attention a couple of years back and I've been waiting patiently for devices to appear. The recent Consumer Electronics Show was another missed opportunity.

Clearly, the profitable business in selling replacement plugpacks and chargers means that manufacturers have little incentive to move to a standard approach. A small chip, that talks the GreenTalk protocol would also be required. My understanding is that this chip is cheap, but perhaps it should be subsidised by state power suppliers or even mandated.

Imagine a world free of "wall warts", where your desk has just one mains lead into a clever little device with a display that shows all the devices and their state of smart charging. Imagine a world where there are standard charging sockets on everything.

To some extent USB has become the de facto standard, but it's not a great standard: only 5V, low current, and you still need intelligent charging circuitry in each device.

What can I do? I've voted through the link above, where you can nominate the gadget that means the most to you presumably to send the manufacturer a message. The other thing is to talk about this technology and take every opportunity to tell manufacturers that I would choose a GreenPlug equipped device over another in a heartbeat. Duh.

Sunday, February 08, 2009

A Wyong field day 2009 report

Today was the Wyong field day. What a fine day it was for it, not too hot thankfully.

DSC01795.jpg

The crowd was a little down on past years but the vendors were very happy with the sales.

I bought a few panel meters.

DSC01797.jpg

I bought a Philips 1.3Ghz frequency counter for $50 that seems to work fine and a calibrated Philips RF probe for $20.

DSC01799.jpg

The commercial vendors seemed to be doing a great trade but happily I wasn't in the market for a black box this year.

DSC01814.jpg

It was my pleasure to run into Peter who is a part of the excellent AmateurLogic TV video podcast. I thanked him for his excellent reports.

DSC01827.jpg

Under cover it was very pleasant with a cooling breeze flowing through.

DSC01805.jpg

Soon it was time to hop upstairs for a refreshing cup of tea.

DSC01829.jpg

And some crackers and cheese cubes.

DSC01831.jpg

The NSW Home Brew group had a great display and answered lots of questions.

DSC01836.jpg

Even 13 year old girls are going for the foundation licenses which is a good thing.

DSC01832.jpg

Wyong wouldn't be Wyong without the embroidery display which was excellent again this year.

DSC01842.jpg

I bought a nice embroidered bag for $5.

Wednesday, February 04, 2009

iPhone/iPod touch as an application platform

AppleStore.jpgI was invited to the Sydney Apple store today to get a briefing from Stan Ng, Senior Director of iPod Product Marketing and Christi Wilkerson, iPod Product Marketing Manager, who have trekked out from California to spread the word on how well everything is going.

There's no doubt they're doing really well at the moment - 4.4 million iPhones in the last quarter alone, available in 70 countries, the iPod touch is the top selling iPod (but mostly because it's the only model in it's class).

I asked if they had any comment on the recent decline of the Microsoft Zune and Stan said he "didn't want to hit them when they were down".

The proprietary iPod connector is spreading too, aside from a few cars, it's now in some United and Singapore Airlines planes and apart from charging you can show the video on the seat back screen. Pity about the lack of WiFi internet though.

Quizzed about the bungling over restrictions on apps available in the store, Stan gave me the company line about seeking to protect customers from objectionable or poor value software. He kind of argued that reproducing a built-in software feature was bad value, I suggested that surely the market should decide that.

The built-in App store works well for iTunes and the iPhone/Touch, I asked when we would get a version for the Mac itself? Stan said that the concept has now spread to GarageBand and he sees "a lot of future in this style of store".

We're starting to see some traces of new iPhone hardware in web server logs so just for fun I asked about a new model and got the amused "we don't talk about unannounced products" laugh.

Sam.jpg


I expressed my frustration that the push service, expected last October, hadn't come out so things like staying logged in to instant messenger while the app isn't running are still not possible on the iPhone. No comment on that one of course.

ChrisIpod.jpgChristi demoed some nice apps including Sim City (which is said to be the most sophisticated version on any platform), a Ralph Loren collection presentation app, Hero of Sparta, and Word Fu which looks like a fun word game.

Great to see the local OzWeather doing so well in the store too - there's some wonderful success stories about small developers making good money through their applications.

A couple of pre-release games including Time Crisis from Namco were on show and I have to say that Chisti had done her preparation and seemed to play exceedingly well...

Platform vitality depends on the developers attracted to it. Apple has a good lead right now but Google Android, and Palm Pre are attracting a lot of developer interest. One possible weakness for Apple is that their developer tools aren't cross platform but it's amazing how over-represented Macs are amongst software developers at the moment.

My thanks to Stan and Christi for their time.

NSW Home Brew radio meeting

Here's a few shots from last night's meeting of the group at Seppo's at Putney. Being a nice warm night we had the garage door open.

DSC01760.jpg


Lots of friendly chat about all manner of technical topics.

DSC01765.jpg


I took along my 80m DSB transmitter and receiver, Kevin had some great work, but Stephen VK2BLQ has excelled once again with a very nicely constructed valve transmitter.

DSC01777.jpg


Everyone's very much looking forward to the Wyong field day next Sunday.