03/04/2017

My KX3 TicTacMic !


KX3 Microphone with frequency display 

This project came about in the spring of 2016, but I never got to post it here.
At the time there was a discussion going on in the KX3 Yahoo group. about using a KX3 or KX2 for “HF Packing” (pedestrian mobile).

Wayne, N6KR, one of the owners of the Elecraft company, said it was a pity that you couldn’t see the display if you keep the rig in your backpack … so could an external microphone with a display be made ?

Was he serious or not, I don’t know, but it got me thinking … this should be easy with an Arduino !
So I picked some stuff : an Arduino Nano, a small OLED display, a miniature electret microphone, some pushbuttons, resistors, … and started experimenting.

Of course I also needed a small and light box to put it all in, and saw a box of TicTac’s  in my favourite colour … ORANGE … and here we are : the KX3 “TIC TAC” Microphone was born.



The orange box turned out to be a mistake, it made the display less visible, so for anyone building this project, better look for a box with a clear display.

The HARDWARE

The circuit is very simple :



The microphone part of the circuit is wired like the standard MH3 microphone*, with an electret MIC element going straight to the MIC and analog GND (resistors and a cap are provided inside the KX3). The UP and DOWN buttons (with resistors), and a PTT button go to the PTT input and digital GND. All this is connected with one half of a cable with a right-angle 4-pin TRRS connector I found on eBay.
[* One small difference : I didn’t use a toggle switch for the PTT, in the MH3 this disconnects the UP/DN buttons in  TX, but since they are shorted out anyway, there is no practical difference]

The serial communication to the KX3 ACC1 port is very simple too.
Most circuits use a MAX232 integrated circuit, but I found a simpler (and much cheaper !) way. 
The KX3 accepts TTL signals at its input without any problem, but the signals coming out of the KX3 are around 7V, too high for an Arduino. So for this I used a voltage divider with two resistors.
At the beginning I couldn’t get this circuit to work … until I realized that a MAX232 is not only converting RS232 to TTL levels, but also INVERTING the signals !
Luckily, the Arduino SoftwareSerial constructor has an optional argument to do just that : invert the signals … problem solved ! (see Arduino code below)

The Arduino reads the 4 programmable buttons via analog input A0. The buttons are wired along a series of resistors, forming a voltage divider chain. Each button press grounds another connection, generating another voltage on A0, so that it can be determined which button was pressed.

The OLED display is wired to the I2C bus on pins A4 (SDA) and A5(SCL), plus needs 5V and GND too.


I mounted everything on a thin single-sided PCB, ground plane on the back.
Arduinos from eBay typically come with some loose pins (not soldered), so I only mounted pins in the holes that I needed, and carefully drilled the holes for those pins. The pins that connect to GND are soldered directly to the back plane. Holes for the other pins are chamfered so they don’t touch the ground plane.


All connections were then made from pin to pin, Manhattan style ... since it was only a prototype.
Also, I was in a hurry to show off this project to Wayne at the Hamradio 2016 in Friedrichshafen.

As it turned out, Wayne was not at the fair, but Eric, WA6HHQ was … so I was able to show it to him and he looked interested. 
We had a nice chat, and Eric took some pictures of my little “baby” …  hi.
Of course I had to have a “selfie” with Eric in return !



Software 
[thanks to Tony N0RUA for getting me started with some code for reading info from a KX3]

For the test , I just programmed the display to show the operating frequency, and the buttons to send the first 4 keyer memories (for VOICE only the first two would be useable).
The mode display is not implemented yet. If you know your way around the Arduino, you can program the 4 PFn buttons to operate a full Menu , with options and settings, not limited to : switching bands, modes, power level, tuning rate, … and show all that info on the display.

Here the display with a power-on message, and a few seconds later the KX3 is set to 14.062 CW 
(now that I think about it, a bit stupid if you make a "microphone" ... but of course you could also have a paddle connected to the KX in your backpack ;-) :




After pressing the DOWN button for a while, the display shows the new frequency :


See code below, most should be clear from the comments. If not, feel free to ask more info in the comments section, or mail me direct to my address on QRZ.com

I also added comments what you should change for a KX2. I haven’t investigated if I can make a detection of what rig is connected, KX3 or KX2, and make it “auto switching”. 
I’ll leave that to the “wizards” at Elecraft, hi.

Have fun if you make this project ! And of course you may always send me a picture; I’ll gladly post it here.

73 – Luc ON7DQ (KF0CR)


Arduino Sketch :
// KX3 external Display with Remote Control
// by Luc - ON7DQ/KF0CR
// Project started : 6 June 2016
// Last revision : 18 June 2016

// What you need : a KX3 (or KX2) , of course !
// Arduino Nano
// Oled Display 128x64 pixels, Blue or Yelloww/Blue
// Any number of buttons on A0 (voltage divider trick)

// Libraries needed
#include <Wire.h> // needed for I2C
#include <SPI.h>
#include <SoftwareSerial.h>  // for comms to KX3
// replaced the Graphics libs by ASCII only libs >> lots of memory saved !
#include "SSD1306Ascii.h"
#include "SSD1306AsciiWire.h"

// KX3 Serial comms
#define BAUD_RATE 9600       // KX3 serial speed
#define LOOP_DELAY 500       // determines rate of polling the KX3

// serial connection to the KX3 :
// RX = KX3 to PC  : to pin 6 via voltage divider (3k9 in series/10k to ground)
// TX = PC to KX3  : direct to pin 7
SoftwareSerial mySerial(6, 7, true);  // (RX, TX, invert)
                                      // invert the bits because no MAX232 is used

// The Oled Display
SSD1306AsciiWire oled;

// 4 buttons + resistor divider chain go to analog pin A0
// define button names
#define btn0      0
#define btn1      1
#define btn2      2
#define btn3      3
#define btnNONE   4

String str = "", freq = "";
char   ch;
int adc_key_in  = 0;
int key         = 0;

void setup()
{
  Serial.begin(9600);
  Serial.println(F("KX3 TicTacMic by ON7DQ"));
  
  // initialize I2C and OLED display
  Wire.begin();
  oled.begin(&Adafruit128x64, 0x3C);
  oled.setFont(Arial_bold_14);
  oled.clear();
  oled.println("ON7DQ TicTacMic");
  oled.println("  for KX3   ");
  delay (2000);
  oled.clear();
  oled.print("FREQ - MODE"); // note : mode not implemented yet

  // connect to KX3
  mySerial.begin(BAUD_RATE);
  mySerial.println("AI0;"); // disable auto info on the KX3
  //  option : do other settings in KX3 (not used here)
  mySerial.println("FA00014062000;"); // set VFO A to some frequency
  mySerial.println("MD3;"); // set CW mode ...
  //  other examples :
  //  mySerial.println("MD6;"); // set DATA mode ...
  //  mySerial.println("DT3;"); // then set submode for PSK-D
  //  mySerial.println("KY VVV DE ON7DQ;"); // send a test msg
  
}

void loop()
{ showFrequencyAndMode(); // mode not implemented yet

  key = read_LCD_buttons();

  switch (key)   // depending on which button was pushed, we perform an action
  {
    case btn0:
      {
        mySerial.println("SWT11;SWT19;"); // send msg 1
        break;
      }
    case btn1:
      {
        mySerial.println("SWT11;SWT27;"); // send msg 2
        break;
      }
    case btn2:
      {
        mySerial.println("SWT11;SWT20;"); // send msg 3
        break;
      }
    case btn3:
      {
        mySerial.println("SWT11;SWT28;"); // send msg 4
                                          // change to  "SWT11;SWT16;" for KX2
        break;
      }
    case btnNONE:
      {
        // do nothing (for now)
        break;
      }
  }
  delay(LOOP_DELAY);
}


// ********** functions

// read the buttons
int read_LCD_buttons()
{
  int adc_key_in = 0;
  for (int i = 0; i < 3; i++) {
    adc_key_in += analogRead(0);      // read the value from the buttons on pin 5 = A0
    delay(2);
  }
  adc_key_in /= 3; // average from 3 reads

  // for checking actual key values :
  //Serial.print ("Key value : ");
  //Serial.println (adc_key_in); delay(100);
  
  // my buttons when read are centered at these values: 0, 131, 319, and 495
  // we add approx 50 to those values and check to see if we are close
  if (adc_key_in > 1000) return btnNONE; 
    // We make this the 1st option for speed reasons since it will be the most likely result
  if (adc_key_in < 50)   return btn3;
  if (adc_key_in < 180)  return btn2;
  if (adc_key_in < 370)  return btn1;
  if (adc_key_in < 550)  return btn0;
  return btnNONE;  // when all else fails, return this...
}

// Display frequency (mode not implemented yet)
void showFrequencyAndMode() {
  //get FREQUENCY
  mySerial.println("FA;");
  // wait for FA00000000000;
  while (mySerial.available() > 0 ) {
    ch = mySerial.read();
    if (ch != ';') str += ch;
    else {
      freq = formatFrequency(str);
      str = "";
    }
  }

  // send to display
  
  oled.setCursor(0, 2);
  oled.clearToEOL();
  oled.print(freq);
}

String formatFrequency(String vfo) {
  String freq = "";

  // e.g. convert '07' to '7'
  freq += String(vfo.substring(5, 7).toInt());

  //freq += ".";
  freq += vfo.substring(7, 10);
  freq += ".";
  freq += vfo.substring(10, 12);
  Serial.print(F("F="));
  Serial.println(freq);
  return freq;
}




16/03/2017

ON7DQ SOTA Tour of 5 summits in the North-West of France

After my winter tour, my SOTA backpack was still packed, and the weather prediction looked perfect for Thursday March 16.
Since my previous tour had brought me to 397 activator points ... 400 seemed like a nice number within reach ...
I had seen that since the reorganisation of the French “low summits” (association FL), some new summits had been added, and had not yet been activated !
So this was my chance, and my decision was quickly made … I packed all my stuff and I left home at 5:45 UTC, arriving at my first summit near the city of Boulogne, at 7:00 UTC precisely.

FL/NO-141 Bois du Mont Lambert - 187m, 1 Point

This is one of the new summits, it’s an easy drive-up summit. The road to the top is a bit damaged but can be done with a regular car. You will have a nice view over the city of Boulogne.
I used these coordinates for my GPS : 50.717767, 1.650439


You can park at the gate to the transmitter site (there are three towers !), and you can operate from there too (there are two bunkers on the top which would make nice operating spots, but access is forbidden).
I got company from two workers who came to do some maintenance on one of the towers, they were friendly and I had a little chat with them.



There was a cold wind, so I quickly fixed my fishing pole and link-dipole to the barbed wire fence and started calling cq on 40m SSB … but my cellphone couldn’t get a connection, so I couldn’t selfspot, and I turned to 40m CW. As I found out later, spotting through RBN didn’t work either, the FL/NO prefix is not yet recognized, and so spots don’t make it to the sotawatch site.
To make things worse, there was some rattling noise in my receiver, every 5 minutes or so , I guess not from the transmitters (which include UHF DVB-T or "TNT" as the French call it), but maybe from a cooling system kicking in ...


So with a lot of trouble I managed to log 4 contacts, but because of the wind, I gave up after those 4 contacts, and went to the next summit.

FL/NO-026, Le Communal, Escœuilles - 211m, 1 Point
This is an old friend, I activated this summit in 2015.
But last time I was on a busy crossroad, where a lot of trucks passed by. This time I tried to find a more quiet spot.  This is a very flat summit, so there are many possible points within the AZ.
I parked my car here : 50.714982, 1.965925
Then took my gear and went to this spot to operate: 50.715396, 1.965002




At the time of my activation this track was very muddy, but I was sitting in a very quiet spot at the entry to the woods. Made 9 qso’s in CW, including a S2S with DF7FX/P.

FL/NO-143, Ferme du Mont, Clerques - 172m, 1 Point

I arrived at this summit around 10:15 UTC.
This is the former summit Mont Gasard (old reference F/NO-123, 145 m).
The new summit is a 27 meters higher than the previous one, but actually it is much easier to activate. You will have wonderful views while driving up (I came from the south)
I used these coordinates for my GPS : 50.795411, 1.970949
From that position, there is a dirt track going to a white house, then turning right and going through a farm. I took this track to the point where a big sign says "PROPRIETE PRIVEE". 

I operated at a nice spot under a tree, made 9 qso’s , again mostly in CW, and also had my picknick, sitting nicely in the sun …


There were intimidating signs along the track, telling that this is a shooting range ... so if you don't want to get shot (hi) ... you can as well park and operate along the road; right accros the farm is one nice spot , or a bit south of the farm, along the Route du Val, is another one, all well within the AZ.

FL/NO-133, Mont Cassel - 176m, 1 Point

Since this summit is closest to my home (Ostend in Belgium) , I have activated it several times before. It is an easy drive-up summit. There is a parking space at the monument on the summit, at this location : 50.801363, 2.485115 , but not all GPS will guide you correctly to it. If you can’t get there, put your GPS to "Place du General Vandamme" at first.
If you like a little walk you can park on the square, it's only 100m to the summit.
OR you can drive all the way to the top, the narrow road you need is in the Southeast corner , is called Rue Saint-Nicolas, and passes by Estaminet 't Kasteelhof. Drive until you can no further and park by the monument.


You can operate on the grass field by the monument, another nice spot is by the windmill, it's still a little higher too ;-)
If you have the time, you can make a nice walk from the summit to the castle, or to the market place , where you find some nice restaurants.


I made 12 qso’s on the summit, thanks to some help from Ed, DD5LP who spotted me.
(the only spots that did work were those that were directly put in at the sotawatch site, as I found out after my tour).
Since I had a nice operating spot in the sun, I thought it was time to test my PSK setup again.
But like the previous test (see ON7DQ SOTA Winter Tour on this blog), the only one that came back to my cq was … Christos, SV2OXS !


I wasn’t expecting too many other callers, so I went on to my last summit, another first activation …

FL/NO-144, Mont des Cats - 164m, 1 Point

Again, an a easy drive-up summit.
Plenty of choices, but I used these coordinates for my GPS: 50.783356, 2.667620

This will bring you to the "Gite Du Mont Des Cats", where you can park.

Across is a large grass field where you can set up and operate in the view of the 200m high transmitting tower. Enjoy !


Be careful of what your GPS is telling you to drive when leaving the summit, there are a couple of very steep and narrow roads you want to avoid ... don’t ask me how I know ;-)
















After a good run of 18 qso’s (without spotting !) I left the summit and headed home .. tired but satisfied as they say …
On the way home I had a well earned dinner at the Pizza Pai in Auchan, Dunkirk ... mmm



73 de Luc, F/ON7DQ/P

15/03/2017

My SOTA Umbrella and Table

In preparation of my SOTA Winter Tour, all weather forecasts said : RAIN !

So it got me thinking .. I better prepare for some wet activations ... how to keep myself and my equipment dry ?

This is what I came up with : a pole-mounted umbrella and accompanying pole mounted operating table. Two very simple things to make.

First the umbrella

Take any large size umbrella ( I got mine for free from my Toyota dealer ;-)
If you can,  take one in the SOTA colours like mine !
Then ... make a HOLE in it !



Hmm ... why make a hole in an umbrella, that's not going to help against the rain , is it ?
Wait ! The hole is reinforced with a rubber flap (cut from a old car inner tyre), which I glued on the umbrella, and was a tight fit on my 6m fishing pole, at the height I was planning to put it up.



And if I want to use the umbrella on it's own, I found out a cap from a film can just fits the hole !



Now for a table !

I cut a piece of lightweigth wood, the size that would fit into my backpack, in my case 34 x 26 cm.
I made a hole that would fit the fishing pole diameter, at the height I wanted to put the table.
The hole is not in the center, because I wanted more space on the front side, where I put my KX3. The other side is for the battery, which needs less space. Also note the notch in the back, which is a tight fit for the umbrella handle (but I may have to make a kind of clip to secure the umbrella handle a bit better).



At the hole I mounted a plastic flange which is normally used to put up a glassfibre pole.
Inner diameter of this flange is 35mm, which turned out just what I needed.
Seen from the underside of the table :



With this, the table gets stuck at a height of 76 cm above ground. Perfect !



Here are both items in use during a recent SOTA activation (on PA/PA-002), but I let the umbrella slide much lower than planned, and put its handle in the armchairs cupholder.
It was raining and like this, I had some better protection.
Of course all of this is only good if you don't have to walk too far to the summit, and if the wind is moderate ...



What do you think ? Comments invited ... 73 de Luc - ON7DQ



12/03/2017

ON7DQ Winter SOTA Tour - 9-12 March 2017

I wanted to do a 4 day tour of the summits in March like last year, with two goals in mind :
- do all summits which are above 500m and grab some winter bonus points

do at least 10 summits to get the 10 YEARS SOTA in Belgium Award.

For weeks I was watching the weather forecasts, but all predictions said : rain, rain, rain , …
I think I’d rather have the snow of last year, but rain … means the forest tracks would all be muddy !
Nevertheless, I started preparing myself for some “wet” activations, and got the idea to make a special SOTA-UMBRELLA, which also would include a well covered operating table !
Find more details of this contraption here https://on7dq.blogspot.be/2017/03/my-sota-umbrella-table.html 


Now what happens if you prepare for a lot of rain ? It doesn’t rain !

All predictions proved wrong in the end, and I had four days of mostly sunshine and temperatures of up to 15 °C … speaking of easy winter bonus points, hi.

So the man made a plan … for one summit in PA, and 11 in ON.
These are the summits I visited :

09/Mar/2017 PA/PA-002 (Vrouwenheide)
09/Mar/2017 ON/ON-026 (Le Mont d'Henri-Chapelle)
09/Mar/2017 ON/ON-001 (Signal de Botrange)
10/Mar/2017 ON/ON-009 (Iverst)
11/Mar/2017 ON/ON-025 (Burteaumont)
11/Mar/2017 ON/ON-011 (Sur Clair Fa)
11/Mar/2017 ON/ON-013 (Bois de Hodinfosse)
11/Mar/2017 ON/ON-010 (Baraque Fraiture)
11/Mar/2017 ON/ON-018 (A la Plate)
12/Mar/2017 ON/ON-019 (Bois de Javingue)
12/Mar/2017 ON/ON-004 (Bois de Hazeille)
12/Mar/2017 ON/ON-006 (La Croix Scaille)

I made 211 qso’s on this trip, an average of  17.6 qso's / summit.
Total points earned : 82, which brings me to 397 activator points to date.

DAY 1

PA/PA-002 (Vrouwenheide)

On my way to Aachen, where I wanted to do some shopping, I stopped at this PA summit, because it will be taken off the list on July 1st.  I parked at 50.846248, 5.955114, and took the short walk to the grass field on the summit.

There was a very light drizzle, so I did set up my newly invented umbrella and table :


The umbrella was a gift from my Toyota dealership ... how nice of Toyota to make it in the SOTA colours !! hi


On the table, place for the KX3, battery and even the logbook !
Antenna was the link dipole on a 6m fishing pole, my favourite SOTA antenna.


Even the operator gets a nice "sota teint" from the umbrella ...

I started on 40m ssb, but had problems to get myself spotted, my cellphone din’t get a network connection. This problem would bother me several other times on this trip !
So after two ssb qso’s , I switched to CW and got easily spotted via RBN.
Still , the activators were not fully awake yet, I only made 6 more qso’s before leaving the summit.

After my “shopping extravaganza” in Aachen ... it was time to move on … to my first of a series of ON summits.

ON/ON-026 (Le Mont d'Henri-Chapelle)

Easy parking near the picknick table at 50.677059, 5.920479, in the "Rue du Moulin a Vent".
Although you could operate at this table, the view from the bench a bit further is much nicer, so I chose to operate there.

For a quick setup, I chose my endfed wire, length 9.15m + 9:1 UNUN. Mounting this wire on a 10m mast is very easy, and also has the advantage to work on any band from 80m-10m,
just hit the autotuner button and I’m ready.
Disadvantage : from my experience, it doesn’t work as well as a dedicated resonant dipole.
I was able to selfspot, so made all 10 qso’s in ssb there.
And to my surprise , when I quickly tuned to 17m , I worked a station from Guadeloupe, TO3Z. So the vertical works better than I thought !



Some other novelty was my battery : in the red box are 8 Li-Ion cells (from a Dell laptop battery).
4 times 2 cells in parallel gives just over 16V when fully charged. The KX3 only accepts 15V, so I found an "autoswitch voltage reducer" in a QST article ( April 2015, page 39, original idea by AD5X, article also found here  ).

For most of the discharge cycle, the KX3 gets more than 13.8V , and so can operate at maximum power of 15W (80-20m). Nice !



ON/ON-001 (Signal de Botrange)

Last summit before I had to go my B&B address in Raeren, near the German border.
It was getting late, so I set up on the parking lot (pos50.501208, 6.093355) , again using the vertical.
If I don't have to walk very far, I carry a heavy galvanized steel ground anchor, which forms a firm base for the 10m mast. It has a screw form, one condition is of course that you're not on rocky ground.



My cellphone had problems again, but to my surprise .. there was free WiFi on ON/ON-001 !
So I had the chance to look up the spots on Sotawatch and work 4 S2S : ON4KCY/P , M3ZCB/P , M1MAJ/P and MM/SP9MA/P
Made 5 more regular qso’s, and called it a day.


DAY 2

ON/ON-009 (Iverst)

On the second day of my tour I had only planned one activation. The rest of the time I did a tour in the Eifel region and went swimming …
Many hams use the parking lot on the German side of the road, but you can park one car on the Belgian side too, at this position : 50.408333, 6.369756, near an information panel.
Not far from the car, a short walk into the woods, I set up on the Belgian side of the road, again using the vertical. WX was sunny and almost no wind ...



Being early morning, I wanted to try some 80m, to give the ON hams a chance to work this summit.
But that was no big success, apart from hearing Don, G0RQL only briefly, and not good enough for a qso, I had to give up 80m, and made 19 qso’s on 40m, mixing SSB and CW.

And then it happened … the 10m pole I’m using is the 10m GFK Mast "MINI" from http://www.dx-wire.de
I wanted to retract it and suddenly I couldn’t … two elements wouldn’t go back in … what was going wrong ?
As it turned out afterwards, two elements got cracked up and some pieces of fiberglass came loose and blocked the sliding action. After removing the loose pieces I could pack the pole, but couldn’t use it anymore on this tour. What a bummer …
For only 60 Euro, one can not expect exceptional quality , but this is still a disappointment, this pole turns out to be what it is … cheap.

[ added July 2017 : in the meantime I could repair this pole, the two broken pieces were replaced, cost 7€ ]

DAY 3

ON/ON-025 (Burteaumont)

Saturday March 11 was chosen as my busiest day, because it was also the VK/ZL <> EU S2S Event. I set up on this easy drive-up summit to be on the air early, and because not too many visitors were expected there. Parking is here :  50.400523, 5.979388, along the Route du Wavreumont. 
This is a farm/forest road in bad shape, but drive slowly and you'll get there. The actual summit is in private property, but the parking spot is in the AZ.



I did hear one VK station that I think was talking to 2E0YYY, but as I was about to call him and ask to qsy , he went qrt ! So far for VK/ZL … I didn’t hear any other, called cq several times, but no joy … ah, well, I still made 7 qso’s , mainly in CW. 

Here a nice view from the summit :


ON/ON-011 (Sur Clair Fa)

The forest tracks were in good shape, so I drove up a little further than last year, and until the road was blocked by a pile of stones, parking spot is here 50.319992, 5.972432.
To your right is a grass field, when you walk to the highest point of that field (where you see a lookout tower), you're in te AZ and can set up.
If you want to walk to the actual trig point, it's about 30 minutes one way, on a fairly flat summit.
I made 14 qso’s , including 2 S2S.



ON/ON-013 (Bois de Hodinfosse)

This summit involves a  fair bit of walking, so I had calculated some more time for it. I also had my lunch there .. and then started walking. 
(I parked here : 50.309002, 5.845732 , and walked up to here : 50.314285, 5.847994)

Other novelty .. in Aachen I got myself a selfie-stick, everyone has one , right ?


Later I found out that Dom, M0BLF/P must have been on the summit at the same time, but I didn’t see or hear him, also had no QRM on the frequencies I used (he mainly operates 30m CW, and must have been at another side of the slope …).
Found a nice place in the sun, with an impressive view … and what a difference with last year, when all of this was covered in snow !




Armchair copy on ON/ON-013 ... well, just joking, I didn't make any 2m qso's on this summit, but I thought it was a nice picture, hi.

One would forget that I was there for SOTA … I had some nice DX contacts : K4DY at the early time of 12:06 UTC , and was also happy to log Geert EA8/PA7ZEE !
After logging 17 QSO’s, it was time to move on to ...

ON/ON-010 (Baraque Fraiture)

Super easy summit … drive to the big parking lot (pos 50.253133, 5.731574), , and find yourself a spot in a corner and set up ...


Again good DX from NE4TN and K4MF, and again EA8/PA7ZEE. Made 16 QSO’s, all in CW because my phone gave up again ... sigh.

ON/ON-018 (A la Plate)

EDIT 2022:  This summit is no longer drive up, but still easy to activate with only a short walk.
New parking spot is here : 50.313556, 5.528613 (near the football field).
From there it is an easy 10 minute walk to the summit. The summit marker is hidden between the trees, but makes for a nice operating table if you can find it ;-)
Look out for this shield:


Go into the woods and a bit later you will find this:


If you don't find it, operate along the track, like I did.

Easy drive up, go via the village of Wéris, take the "Rue du Broux", and drive carefully to this position : 50.322808, 5.544940, where you can park. The road is in a very bad state, so take it easy.
You can operate near the car if you wish, the summit is a flat ridge. The trig point is some 650m southwest.

This was my last summit for the day, so was a bit in a hurry … but the chasers seemed to have woken up and have all the time, they kept on calling … so ended my day on this summit with 30 QSO’s !


At 15:15 UTC I left the summit, found a nice restaurant to have dinner, and drove to my next B&B in Nassogne, near the summit I had planned for the next morning.

DAY 4

This Sunday coincided with the UBA Spring contest on 2m. So I took an early breakfast, and went to my first summit as quickly as I could  :

ON/ON-019 (Bois de Javingue)

I followed a tip from Peter, ON4UP, to drive up the road Sur Baulet all the way to the end, but I was a bit too optimistic, and drove past the point where I should take a path to the summit. Anyway I found a nice parking spot at a house in the woods (pos 50.155342, 5.281790) , took all my stuff (backpack, chair and mini table), then had to descend a little and found the path without trouble.
My operating spot was about here : 50.157758, 5.290215, where I had not too many trees blocking my view ... and the VHF signals I hoped ...

This time I used my FT-857D which is mounted in a wooden frame in my backpack, toghether with a Z100 antenna tuner for HF use.
With a special set of batteries (2 Dell laptop batteries in a homebrew frame, putting the batteries in parallel via diodes, giving 14~16V at 9Ah), I can operate 20 to 30 Watts without problems. I even took two extra batteries to make sure I could operate the whole contest. 

Antenna for VHF was the 4-element logperiodic I used last year (see my report from last year elsewhere on this blog), mounted at 2/3 of a 6m fishing pole.


I don’t know if my setup was not working or if the interest in contesting was low … but I made a meager 11 qso’s in 2 hours, none of which was a call from a regular SOTA chaser.

Of course the FT-857D has HF too … so I gave up on the 2m contest and wanted to try some HF …. Oops !
Being in such a hurry … I forgot to pack any HF antenna …. stupid me !
I did qualify the summit, so no problem for me … but sorry to those that would have worked me on HF … better luck next time.

ON/ON-004 (Bois de Hazeille)

This is an easy drive-up summit, with a nice operating spot behind the radar tower.
Park here :50.031536, 5.427229, and operate anywhere along the forest road. DON'T go into the woods as it is forbidden to leave the tracks !
Since this was my 10th ON summit, this was the one that got me the 10 Years ON SOTA Award … mission accomplished !


This was also  the place to test a lightweight antenna, used by many SOTA activators in the USA, the most famous one being Steve the “goatman” WG0AT. It is also the antenna recommended by Wayne N6KR of Elecraft.
The antenna is nothing more than 58 feet of wire, with a counterpoise of 13 feet.
It is connected directly to the rig, on a BNC to binding post adapter, no coax needed !
(some people use a 9:1 unun, which probably gets better results in tuning the antenna)

For us Europeans those lengths are 17.7 m and 3.96m.
I put up the radiator over my fishing pole, midpoint around 5m, and tied the end to a wooden lookout tower. The counterpoise was laid on the ground, KX3 on a small table, 50cm above ground. 
See picture above, I drew a line on it to show you where the wire was.

The KX3 was tuning the antenna, but SWR did not go below 3 on 40m … so I’m not really sure it’s an improvement over my link dipole. Again, like with the random vertical, it’s only advantage would be the multi-band operation, and maybe a little weight saving (no coax).
On the air, I got good reports despite the bad SWR, but that can also have been propagation at that time of day …
17 qso’s were made on 40m, I called cq on 20m but got no replies. Then made one qso on 17m and went on to my last summit for this trip.

ON/ON-006 (La Croix Scaille)

This is again an easy drive-up summit, but also a very busy place in the weekends. Many come to visit the “Tour du Millenaire” (see https://en.wikipedia.org/wiki/Tour_du_Millénaire ), which is a new steel tower, replacing an earlier wooden construction. Acces to the tower is free, and gives you a wonderful panorama. Many families also come for a Sunday afternoon walk in the woods …


I set up on a parking lot a bit further in the woods, driving past the tower, then to the right to pos 49.954181, 4.844514. Don't go left at the end or you'll end up in France.
Although this spot is not so busy as the parking at the tower, I still got more attention than I needed.
Walkers, or people with cars even stopped to ask if “the Martians were coming” or “if I had spoken to E.T. yet” … very funny indeed , hi. Last year a lady saw my headphones and wanted to know if I was listening to the birds hahaha.


The activation went very well,  a nice pile-up netted 51 qso’s on 40m, both ssb and cw.
Now I had carried a Linx 7” tablet for doing some PSK, but nobody really requested that I should use this mode … this was the last chance to give it a try.


So as a last part of my activation, I connected the tablet to my KX3 with my homebrew interface (see https://on7dq.blogspot.be/2017/02/my-kx3-digimode-interface.html) and started calling cq on 14.071 in PSK31. Spotted myself … and then waited, and waited …. and called more cq … and more …

After calling cq for 5 minutes, I finally got called by SV2OXS , thank you Christos for saving my day!
So my system seemed to work, but more cq’s didn’t bring any more qso’s, I gave up and packed up for the last time at 16:30 UTC and took the road home to Ostend, where I arrived at 19:30 UTC.

So far for this trip … thanks to all chasers for the qso’s !
Hope to do it again next year !

73 de Luc – ON7DQ