It finally has come to an end and I was able to clear my workbench
Month: February 2013
Fun with CQRlog and MySQL
After last nights SKCC sprint I wanted to see how many more QSOs I would
need to reach Centurion status with the group. For thos who don’t know it, the
Centurion status is given to those members who made contact with 100 SKCC
members.
Thankfully CQRlog has MySQL in the backend so what easier way to find out
than a quick SQL query.
Here’s what it looks like:
select distinct callsign, club_nr2 from cqrlog_main where club_nr2 > 0 and mode = "CW";
And the results are in NAQCC 100th sprint
What a surprise. I did score indeed 1st place in
the W7 division in the 100th NAQCC sprint. It was
fun, but now some work to do to get more Qs in the
log during the next one.
SWA Category - W7 Division Call QSOs Mbrs Pts Mul Sco Bon Final 80-40-20 Antenna K5TRI 20 19 39 10 390 x2 780 OCF Dipole @30 ft. K9JWV 15 15 30 11 330 x2 660 43' vertical; seventy elevated radials W7GAH 8 8 16 8 128 x2 256 240' Rand Wire @ 60' W7TAO 11 10 21 10 210 210 575' loop at 40' NU7T 9 8 17 5 85 x2 170 Fence top 80m dp WB7EUX 6 5 11 6 66 x2 132 Windom@30 ft KE7YTE 5 4 9 5 45 x2 90 Vertical Dipole, 18 ft. @ feed point AA7CU 7 6 13 6 78 78 Mobile vertical @ 12' NU7Y 6 6 12 4 48 48 Attic Dpl@25' WU7F 3 1 4 3 12 x2 24 Vert mounted nr gnd w/2 radials K7DJO 3 2 5 2 10 x2 20 Gnd mtd vert K7HAP 1 1 2 1 2 x2 4 Vert@10' K7EX 2 1 3 1 3 3 Trapped dipole in attic @20' @WD7Y 19 19 38 12 456 456 88 ft Dublet 30 ft high
ARRL DX CW Contest & Linux
This weekend was the ARRL DX CW contest. I played a little bit to get a
few new countries and just for fun. I started with N1MM but looked if
there was a way to do it on Linux. There is. The combination of xlog
and eepKeyer was working quite ok. Export of the Cabrillo file and also
scoring was a different story though. But it’s a start. eepKeyer uses
cwdaemon for keying, so the interface I built a few weeks ago worked as
well.

Saturday debugging
6w/HA0NAR – QRP works
Who needs big amps and beams when 5w into a vertical will do 🙂

Board IDs to use with CMake for Arduino
If you’re like me, you don’t like the Arduino IDE that much. I
much prefer a good texteditor and a toolchain behind it to build
and upload the code. CMake to the rescue. One thing you have to
configure in your CMakeLists.txt file is the BOARD_ID to tell it
which board you are using. Here’s the list of IDs since I couldn’t find
them on the github page for the CMake project.
– atmega328: Arduino Duemilanove w/ ATmega328
– diecimila: Arduino Diecimila or Duemilanove w/ ATmega168
– nano328: Arduino Nano w/ ATmega328
– nano: Arduino Nano w/ ATmega168
– mega2560: Arduino Mega 2560 or Mega ADK
– mega: Arduino Mega (ATmega1280)
– mini328: Arduino Mini w/ ATmega328
– mini: Arduino Mini w/ ATmega168
– ethernet: Arduino Ethernet
– fio: Arduino Fio
– bt328: Arduino BT w/ ATmega328
– bt: Arduino BT w/ ATmega168
– lilypad328: LilyPad Arduino w/ ATmega328
– lilypad: LilyPad Arduino w/ ATmega168
– pro5v328: Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega328
– pro5v: Arduino Pro or Pro Mini (5V, 16 MHz) w/ ATmega168
– pro328: Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega328
– pro: Arduino Pro or Pro Mini (3.3V, 8 MHz) w/ ATmega168
– atmega168: Arduino NG or older w/ ATmega168
– atmega8: Arduino NG or older w/ ATmega8