Wednesday, September 20, 2023

WSPR Watch version 4 is out

Timed to coincide with the release of iOS 17, WSPR Watch version 4 is now in the iOS App Store. It's a long overdue re-write of the app in the modern SwiftUI framework. The biggest change is on iPad which (I humbly think) looks great, particularly in dark mode:


There has been a bit of feedback about the changes and I'm working on a 4.1 release in the weeks ahead. My thanks, as always, to the dedicated testers and those that write in with suggestions and feedback.

Low cost Intel PC that runs on 12V battery

As part of my project to convert the shack to off-grid power I thought it might be good to replace the shack laptop (with its mains charger) with a low cost PC that Lindsay, VK3GX, brought to my attention.

The Beelink PC was on special on Amazon so I purchased one for AU$224.25


Others report that the discount varies. I did not choose to pay $30 more to get 16G RAM and 512G SSD.

The machine comes with Windows 11 and it was interesting to go through the Windows setup. They are up to their old tricks. A screen popped up saying that I would get Office 365 free for a year, but would need to give them my credit card. I declined. (Presumably they'll quietly bill people a year later when they've forgotten).

The first thing I did was go to install the Chrome browser. As soon as I went to the download page they tried to talk me out of that.


I'm not sure that my level of trust in Microsoft is a positive factor in choosing a browser.

Windows 11 looks beautiful, it's getting similar to macOS in many ways. I was struck that the application dock is now centred like on the Mac. The login screen on Windows looks like this:


macOS Sonoma looks very similar:


I tried to install Linux Mint Cinnamon in a dual boot configuration but for some reason this didn't work - perhaps some sort of secure boot restriction. In the end I gave up on Windows and wiped the disk to install Linux.

The machine is now running on the shack 12V battery and the x11vnc server means that I can control it remotely. Currently it's connected to a QDX for WSPR and makes a very small dent on the workbench.


There is no noticeable noise from this computer running on 12V DC.

I control the machine using the built-in VNC from macOS.


Works very well over the wifi network.

Sunday, September 17, 2023

Amazingly decodable spots from a QDX transmitter, displayed in WSPR Watch

During the beta phase of iOS 17, which will be released in a day or two, I've been working on a re-write of my iOS app "WSPR Watch" using Apple's fantastic SwiftUI framework. While the re-written app loses a few features of the old version, one big improvement is to how it appears on an iPad.

Highly successful WSPR receiver, Phil, VK7JJ now looks like this on the iPad:


(Click the image for an enlarged version). Now that my radio shack is battery powered (with solar charging), I thought it wise to run something that draws less current than an IC-7300 for full time WSPR operation so I set up the QDX. I think it's not quite as good a receiver as the Icom but there's no doubt that the clean signal it transmits is superior, at least in terms of the number of stations that decode my WSPR signals.


Operating on 20m, just now at dusk, my 4.7W transmission was reported by 168 stations which is pretty good given that I'm in country Victoria and not in the middle or Europe or whatever.

The new version of WSPR Watch is scheduled for release on 18 September, just after iOS 17. It is compatible with iOS 16 but I know there are some users who won't be able to update as they run older devices. They can keep running the old version but I must move on and adopt new technology.

Wednesday, September 13, 2023

Shack is off-grid again

Visiting the emergency communications exercise a few weeks ago inspired me to make sure my radio shack can operate without mains power if required. This could be important if this summer is a fire season as seems possible.

I had a folding solar panel claimed to generate 100W from the old days of my camper van.


For now it's on the ground but I may put it on the roof at a later date for more sun during the day.

I purchased a 105Ah flooded lead acid deep cycle battery for $249. As it's just sitting on the floor weight isn't a problem. 


A cheap Chinese PWM charger got me started and worked fine but I ordered a more efficient MPPT charger made by Renogy. It seemed to work well...


Unfortunately it generates a lot of radio noise. Even up on 20m it leaves bands of noise all over the dial.

The cheap Chinese PWM charger doesn't produce any noticeable noise. (You can see it mounted on the wall with the blue face plate above).


To be fair, my noise floor here is very low and I haven't tried to suppress the noise from the Renogy unit at all so far. It is disappointing though.

I powered my IC-7300 all night receiving WSPR last night and the battery was down to 12.3V in the morning. It is good to know that I can make radio contact after a long term power outage if required. It is a very useful feature of an Amateur radio station.

Monday, September 11, 2023

Shepparton HamFest was excellent

On Sunday I drove two hours to get to the Shepparton Hamfest. A little tiring but an excellent show that was both well attended and had lots to see and possibly buy.



VK3ZYZ had a display of his Arduino based VFOs which he sells as kits but also has built into radios including Codans and even an IC-22 (that brought back fond memories).



There's information and source code available via the SADARC website projects page. The club also has excellent forums with more discussion and information.

I came away with just a few parts including these nice honeycomb trimmer capacitors. 


It was great to catch up with radio friends including VK3EB, VK3ASE, VK3NE and VK3CCR (the last two from the Macedon Ranges Amateur Radio Club). Warm congratulations to the Shepparton organisers for a fantastic day.

Wednesday, August 23, 2023

Joined the Macedon Ranges Amateur Radio Club 80m net over wifi and bluetooth

It's 7C in the shack tonight so I decided to set up the IC-705 and use it remote from the warmth of the house. The client software on macOS is SDR-Control and I was using AirPods bluetooth headphones.

Even running just 10W reports were all good although Graeme, VK3NE, mentioned a bit of boomy audio.

The main issue is the delay when switching between receive and transmit - I doubled with other stations several times. It was mentioned that my final words of an over were chopped off so I think that I need to not switch back to receive for a few seconds after ending what I was saying - perhaps there's an audio buffer to send.

The IC-705 is an amazing radio and it's great that 10W with a good antenna is enough to be easily heard by other stations. Joe, VK3MAB mentioned that I was 10dB over S9.

You can join the MRARC nets if you are in Victoria, Australia too!

SwiftUI Charts to monitor power generation and use

We have 6kW of solar panels here but it's important to know when the sun is shining on them so I can use that power to charge the car or dry clothes. In recent months I've been learning Apple's SwiftUI and one of the gems is the new Charts View. Here's how it looks:


This wonderful chart is created with very little code:

Chart {

                ForEach(model.netHistory) { sample in

                    LineMark(

                        x: .value("time", sample.id),

                        y: .value("Generating", sample.generating)

                    )

                    .foregroundStyle(by: .value("", "Generating"))

                    .interpolationMethod(.catmullRom)

                    

                    LineMark(

                        x: .value("time", sample.id),

                        y: .value("Using", -sample.using)

                    )

                    .foregroundStyle(by: .value("", "Using"))

                    .interpolationMethod(.catmullRom)

                    

                    BarMark(

                        x: .value("time", sample.id),

                        y: .value("Net", sample.net)

                    )

                    .foregroundStyle(by: .value("", "Net"))

                    

                }

                

            }

            .chartForegroundStyleScale(domain: ["Generating", "Using", "Net"], range: [.green, .orange, .blue])


ABC Friends (Southern Bayside Victoria) event at Brighton

It was a pleasure to assist at an event organised by ABC Friends - southern bayside. The topic being discussed was "The ABC Past, Present and Future" and hundreds of people turned up on a cold and somewhat damp evening.


Great to catch up with Zoe Daniel and Dr Gael Jennings. Good to meet John Faine for the first time.

The discussion was wide ranging and animated. It's great to see the deep love for the ABC from the community. ABC Alumni support the wonderful efforts of ABC Friends.

Volunteered at GovHack 2023

After competing in GovHack in 2017 I became heavily involved as a volunteer for a few years. After a break and a move to Melbourne I volunteered to help with GovHack in Victoria.


GovHack encourages software projects that make use of open government data. It's a wonderful contest that lets teams come together and do a quick project in one weekend.

I was tasked with taking photos and enjoyed the challenge of photographing groups.

As a volunteer it was a tiring weekend, I'm not used to standing up for long periods and talking to lots of people. Overall, very rewarding and I look forward to the state and national awards ceremonies in the months ahead.

Sunday, July 30, 2023

Built VK3XU's "Simplex sidebander"

I'm on a bit of a retro transmitter trip at the moment. Armed with some low profile 3.6864 crystals I built the "Simplex Sidebander" described in the first volume of Drew Diamond, VK3XU's wonderful "Radio projects for the radio amateur".

The transmitter is simplicity itself. An NE602 with a crystal pulled up in frequency produces double sideband that goes through a 4 crystal bandpass filter. Three RF gain stages produce about 4W out. The final is a low cost IRF510. Mic amp is a 741. Here's how mine looks:


Despite trimming the oscillator crystal I couldn't get decent sounding sideband out of it. The reason is that the little crystal wouldn't pull high enough. Acting on the advice of SmartFriends™I replaced the single crystal, first with two and then three of the little ones and in the end with three larger crystals which seem to pull more. In the end I have a full size polyvaricon for tuning:


Drew warns that the whole thing needs to be in a shielded box and I can attest to the fact that when attached to my antenna it takes off magnificently. 

The exciter itself seems very narrow to me - here it is fed into a local SDR.



Off to the shops to buy a tin of biscuits... (to get a tin to put it in).


Boxed up and it no longer takes off when connected to the antenna.

I have a bit of instability as you can see in the dips in the AM test signal here:



Saturday, July 01, 2023

Built a low pass filter for using the Minion on 80m

I was horrified when I looked at the spectrum coming from the minion on 80m so clearly a low pass filter is needed. I used the notes from GQRP on low pass filters for my design and it looks good when swept.


My build is not very compact and indeed it's almost the same size as the whole transceiver.


I quite like these boxes, purchased on AliExpress and plan to make low pass filters for 40 and 20m as well.

The filter on a spectrum analyser shows that it's 3dB down at 5.16Mhz and the first harmonic, at about 7MHz would be down 25dB at least.