Uncategorised
I started to learn Morse back in 2004, on a local 2m Simplex net from G3AQM(SK) and prepped for the Morse Class A exam to be taken at the FRARS Hamfest in Aug 2004. The IARU change in 2003 was then implemented by the Radiocommunications Agency, predecessor of OFCOM so I had my RSGB exam fee returned and I could get onto the HF Bands !
In 2019, I decided to start again as as I had a 2hr each way commute thought a good use of my time would be to use the K7QO MP3 Files in the car to learn the letters. I found this quite difficult and was not disciplined enough to complete this. I did get the alphabet done at a reasonable speed for receive, but no work on transmitting !
In the end of December 2022, I decided that I needed to finally do this so after seeing a post about CW Ops, I signed up for their beginners course, initially thinking that it was over subscribed for January and I'd take part in May. That would give me time to get a paddle key and get familiar with all things CW. WRONG !!
I got onto the January Course, starting in 2 weeks and I'd not even looked at what key to buy ! Then ensued a urgent email to Bruna at Begali to order a Begali Sculpture for delivery ASAP ! Between Bruna and FedEx, I had my paddle in 17 hours from dispatch in Italy. I tracked it via the website and was very surprised when it arrived so soon !
K1USN Certificate
Begali Sculpture Paddle Key with a Yaesu FH-2 Remote, connected to the Yaesu FT-2000 HF Radio
After 16 sessions, over 8 weeks I'm now on-air with CW, just as I always wanted to do. It's still hard work, and I'm still learning, but CW operators have been very patient and the Slow Speed morse contests and nets are good fun too.
I'll keep working on CW, alongside my favourite digital modes. It would be nice to get to 25wpm but that seems a long way off at the moment !
Custom 3d Printed Begali Sculpture Cover in Creality Black and Amazon Silver Silk PLA.
Using a rotator from the 1970's, whilst it is robust and well made, it's very manual !
This project adds the K3NG Arduino based rotator controller to an Emotator 1103MX Rotator controller, to automatically orientate my 6m Yagi towards stations when selected in Log4OM or WSJT-X. This will be achieved using the K3NG sketches, loaded onto an Arduino Mega and PSTRotator will handle the PC connectivity. The K3NG core will also support a Real Time Clock and a Global Positioning System Receiver for Station Time Syncronisation. This core element will be further built upon for routing GPS NMEA Sentences to the TMD-700E for APRS, and another secondary GPS receiving device as well as a shack clock. A later design has also incorporated the build of a Global Heading type display, using a micro servo motor and a custom 3d printed gearbox.
Component Parts
- Manual Rotator Control box
- K3NG Sketches by Radio Artisan
- Arduino Mega 2560
- Adafruit Ultimate GPS
- DS3213 RTC Module
- 4 channel Relay Module
- Adafruit USB Isolator
Rotator Circuit and Modification design
Considerations need to be made for a number of aspects of this design, as the older rotators were not designed to have any additional components and used very wide tolerances compared to the electronic circuits that we are going to integrate with this project. The first issue is that the controller and Rotator motor are based on AC, with some crude rectification for DC, and even cruder DC voltage regulation, but were commonplace in the 1970's, think half wave rectification and reverse Zener Diode voltage regulation.
In the case of the Emotator, this results in a 100v AC Rotator voltage, and 6v DC-ish for the controller to achieve position sensing via a 600Ohm potentiometer, with a shared ground with the 100v AC. The Control box lighting is via 2 bulbs fed with the same 6v DC. The Moving Coil meter is set to display a centre point of N, and from measurements made uses 0 - 200mA for full deviation.
We need to achieve the ability to rotate the antenna, by automation, therefore adding a relay to each of the controller switches is required. There is one for Clockwise, One for Counter-Clockwise and each button has a first stage which is for releasing the brake. Therefore we need 3 relays, and as pre-made modules tend to have 4, we have a spare for something else if we choose to use it. (I had thought of also having a relay on the power switch, but will look at that another time.
We also need to get a feed from the potentiometer to identify the position of the rotator to make control decisions. K3NG gives us a lot of options other than the potentiometer, but using what we have, there is a feed directly from the rear of the existing meter to give us a variable voltage, albeit far too low for accuracy within an arduino 0-5v range.
Finally, we need to think about where the new controller can be housed. Some older controllers have plenty of space within, much as the Emotator has, however the K3NG Arduino Controller is also going to be abases of further shack automation, therefore I am housing it externally so that the follow on projects can be added.
Controller Circuit build
The build of the K3NG is fairly simple, and following the details on the K3NG documentation will get this completed very quickly. Adding the relay boards and configuring these are also very simple to do. Adding additional features can also be achieved but I did run into some issues due to my choice of external components and the initial controller.
Potentiometer Voltage Output
This was in the order of 200mV therefore needed amplification with a suitable circuit. I did not do anything fancy here, just a basic non-inverting Op-Amp based on the MCP6002, as this is a standard 5v rail op-amp and could easily provide the 20 x Gain I needed. I added smoothing caps to the voltage feed, as of the raw nature of the original DC rectification, therefore not needing to use the K3NG signal conditioning software routines.
Adafruit Ultimate GPS
This is an excellent GPS unit and without an external antenna, indoors can pull 7-8 sats to gain a fix. The K3NG code does not natively support this directly, however the set-up of this unit for use on the K3NG controller is easy when you know how !
The GPS module is preset to send sentences in a different format than the code is expecting, and is receiving both GLONASS and GPS for positioning. There are programming commands that are required to do this which are held whilst the GPS has battery backup. I have however added the code to the K3NG codebase so the GPS is initialised every time it restarts to make sure.
Ground Loops
A final issue came once everything was connected up and tested manually, then connecting a USB cable to the Arduino caused the Original controller needle to deflect fully, which was identified as a ground loop. This is easily fixed and I used the Adafruit USB Isolator, and this works well.
K3NG bespoke additions
GPS Initialisation code - This code is added to the main code file, at the bottom of the Setup
You only need to do this every time you remove the GPS board battery, but I just run it every time.
#include <Adafruit_GPS.h>
void setup() {
......
#define GPSSerial Serial2
Adafruit_GPS GPS(&GPSSerial); // allocate serial port
GPSSerial.begin(9600); // connect at 9600
GPS.sendCommand(PMTK_SET_NMEA_UPDATE_1HZ); // 1 Hz update rate
GPS.sendCommand(PMTK_SET_GPS_ONLY); // Set for GPS only
GPS.sendCommand(PMTK_SET_NMEA_OUTPUT_RMCGGA); // Set updates in correct format
}
Emotator specific settings
//Emotator specific config
#define AZIMUTH_STARTING_POINT_EEPROM_INITIALIZE 0 // North Centre
#define AZIMUTH_ROTATION_CAPABILITY_EEPROM_INITIALIZE 360 // Set for 360 rotation
#define ANALOG_AZ_FULL_CCW_EEPROM_INITIALIZE 40 // Set CCW Voltage reference from debug values, far left
#define ANALOG_AZ_FULL_CW_EEPROM_INITIALIZE 654 // Set CW Voltage reference from debug values, far right
Post build commands issues in Serial Console
These commands cenre the rotator at 0 degrees as indicated on the original Emotator Console.
\X0 (that's Xray Zero)
\I0 (that's India Zero)
\J360
Move rotator to centre, pointing North.
\A360
\Q
Amateur Radio Awards that have been achieved by M1VPN
I do like setting goals for my operating and have collected some "Wallpaper" along the way. There are some great Award Schemes out there.
The ARRL DXCC being the most well known, but JARL have some excellent awards and their certificates are excellent, so are their team in JARL HQ. The RSGB have a few, and the new Awards Co-ordinator is doing a fine job, but the certificates are bland and the schemes are not that inspiring compared to other countries. DARC also have a great portal for awards, and their logbook can ingest from LoTW. They also support other awards from DIG etc.
I would like to achieve #1 Honor Roll for DXCC, but I'm a long way off at the moment, but I will get there.
DXCC Award |
New LoTW QSLs |
LoTW QSLs in Process |
DXCC Credits Awarded |
Total (All) |
Total (Current) |
---|---|---|---|---|---|
Mixed * | 18 | 0 | 200 | 218 | 218 |
CW | 22 | 0 | 0 | 22 | 22 |
Phone | 33 | 0 | 58 | 91 | 91 |
Digital * | 30 | 0 | 187 | 217 | 217 |
Satellite | 49 | 0 | 0 | 49 | 49 |
160M | 43 | 0 | 0 | 43 | 43 |
80M | 38 | 0 | 49 | 87 | 87 |
40M | 56 | 0 | 54 | 110 | 110 |
30M | 35 | 0 | 93 | 128 | 128 |
20M | 56 | 0 | 122 | 178 | 178 |
17M | 91 | 0 | 9 | 100 | 100 |
15M | 96 | 0 | 26 | 122 | 122 |
12M | 68 | 0 | 3 | 71 | 71 |
10M | 109 | 0 | 14 | 123 | 123 |
6M | 65 | 0 | 0 | 65 | 65 |
2M | 1 | 0 | 0 | 1 | 1 |
13CM | 2 | 0 | 0 | 2 | 2 |
Challenge | 657 | 0 | 370 | --- | 1027 |
19/02/2024
Award | Div | Granted | Current | Target | OK | Note |
ARRL DX Century Club (DXCC) | Mixed | 200 | 214 | 340 | a | 200 Confirmed, Need 331 for Honor Roll, 340 #1. |
ARRL DXCC | Phone | 58 | 91 | 100 | r | Not Achieved |
ARRL DXCC | Digital | 187 | 211 | 100 | a | |
ARRL DXCC | CW | 0 | 13 | 100 | r | Started CW in Feb 2023 |
ARRL DXCC | Sat | 0 | 45 | 100 | r | QO-100 - started April 2023 |
ARRL 5 Band DXCC | Mixed | 0 | 486 | 500 | r | 80m to get - 10m, 15m, 20m, 40m and 30m achieved. |
ARRL DXCC Challenge | Mixed | 0 | 1002 | 1000 | a | 1000 level Achieved - Dec 2023 |
ARRL VHF/UHF Century Club (VUCC) | 50 Mhz | 300 | 315 | 500 | a | 300 grids - Awarded Aug 2023 |
ARRL VHF/UHF Century Club (VUCC) | Sat | 100 | 146 | a | QO-100 - Awarded Sept 2023 | |
ARRL Worked all States (WAS) | Mixed | 50 | 50 | 50 | a | Awarded Digital, Achieved Mixed & FT8 |
ARRL Morse Proficiency Level | CW | 10 | r | Awaiting assessment - 10 wpm | ||
JARL Worked All Squares Award HF - WASA HF | Mixed | 900 | 1135 | a | ||
JARL Worked All Japan Districts - AJD | Digital | 10 | 10 | 10 | a | All Call Areas, 0-9 |
JARL Worked All Japan Areas - WAJA | Digital | 43 | 0 | 47 | r | Need 29, 37, 39, 45 Prefectures |
JARL Asian DX Award - ADXA | Digital | 34 | 35 | 36 | a | |
IARU Worked All Continents - WAC | Mixed | 7 | 7 | 7 | a | |
IARU R1 Award - Level 2 | Mixed | 60 | 65 | 100 | a | 30, 60 and 100 levels |
IARU R3 Award - Level 1 | Digital | 7 | 7 | 20 | a | 5, 10 and 20 levels |
DARC WA-EU | Mixed | 27 | 27 | 27 | a | Post-Brexit EU Award |
DARC EUROPA Diplom | Mixed | 424 | 424 | 300 | a | Plaquette Awarded for 300 |
DARC EURD RTTY Class I | Digital | 277 | 277 | 200 | a | |
DARC WAE Class II | Mixed | 285 | 285 | 200 | a | |
DARC EU-DX-D | Mixed | 300 | 300 | 1000 | a | |
DARC DLD 100 | 40/80 | 100 | 100 | a | ||
DIG EU-PX-A | Mixed | 586 | 586 | a | ||
DIG Actio-40 | Mixed | 5 | 12 | a | Awarded 5 of 12 | |
ARI - Certificato de Mediterrano - CDM | Mixed | 27 | 30 | 32 | a | |
UBA 75th Anniversary - Diamond | Mixed | 40 | 40 | 40 | a | |
QO-100 DX Club DXCC Award | Mixed | 50 | 50 | 150 | a | Bronze Level Awarded - Oct 2023 |
CQ WPX | Mixed | 860 | 1695 | a | ||
CQ WPX | SSB | 350 | 592 | a | ||
CQ WPX | Digital | 737 | 1508 | a | ||
CQ WAZ | Digital | 40 | 40 | 40 | a | Not applied for - CQ takes over 12 months to get the certificate and that's if you chase the ARRL for it, like I did for the WPX Certificates. Not sure its worth the hassle. |
Updated Dec 24th, 2023
Tonga Volcano Shockwave - 15/01/22
Following the volcanic eruption in Tonga on 15th Jan 2022 at 0400 UTC , the resulting atmospheric shockwave has been captured by our weather station.
The wave travelled at 1,110 Kph (about 16,517 Km away and took 15 hours to get here) and has been measured around the world on other amateur weather stations, many shared on Twitter.
At 16/01/22, 0145 UTC, a second spike is observed, which is the Long path shockwave. Theories suggest that the shockwaves moved North and South, when observing the delta times of the Pressure wave.