Skip to content

Commit

Permalink
Start work on cq ww rtty
Browse files Browse the repository at this point in the history
  • Loading branch information
mbridak committed Sep 20, 2024
1 parent 3fa537b commit a240f08
Show file tree
Hide file tree
Showing 5 changed files with 555 additions and 5 deletions.
2 changes: 1 addition & 1 deletion not1mm/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1951,7 +1951,7 @@ def save_contact(self) -> None:
"MSK144",
"JT65",
"JT9",
"Q65"
"Q65",
):
self.contact["Freq"] = round(
float(self.radio_state.get("vfoa", 0.0)) / 1000, 2
Expand Down
13 changes: 9 additions & 4 deletions not1mm/data/new_contest.ui
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,11 @@
<string>CQ WW CW</string>
</property>
</item>
<item>
<property name="text">
<string>CQ WW RTTY</string>
</property>
</item>
<item>
<property name="text">
<string>CQ WW SSB</string>
Expand Down Expand Up @@ -376,24 +381,24 @@
</property>
<property name="dateTime">
<datetime>
<hour>8</hour>
<hour>0</hour>
<minute>0</minute>
<second>0</second>
<year>2024</year>
<month>1</month>
<day>1</day>
<day>2</day>
</datetime>
</property>
<property name="date">
<date>
<year>2024</year>
<month>1</month>
<day>1</day>
<day>2</day>
</date>
</property>
<property name="time">
<time>
<hour>8</hour>
<hour>0</hour>
<minute>0</minute>
<second>0</second>
</time>
Expand Down
34 changes: 34 additions & 0 deletions not1mm/plugins/cq_ww_cw.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
"""CQ World Wide DX CW plugin"""

# CQ Worldwide DX Contest, CW
# Status: Active
# Geographic Focus: Worldwide
# Participation: Worldwide
# Awards: Worldwide
# Mode: CW
# Bands: 160, 80, 40, 20, 15, 10m
# Classes: Single Op All Band (QRP/Low/High)
# Single Op Single Band (QRP/Low/High)
# Single Op Assisted All Band (QRP/Low/High)
# Single Op Assisted Single Band (QRP/Low/High)
# Single Op Overlays: (Classic/Rookie/Youth)
# Multi-Single (Low/High)
# Multi-Two
# Multi-Multi
# Explorer
# Max power: HP: 1500 watts
# LP: 100 watts
# QRP: 5 watts
# Exchange: RST + CQ Zone No.
# Work stations: Once per band
# QSO Points: 0 points per QSO with same country (counts as mult)
# 1 point per QSO with different country same continent
# 2 points per QSO with different country same continent (NA)
# 3 points per QSO with different continent
# Multipliers: Each CQ zone once per band
# Each country once per band
# Score Calculation: Total score = total QSO points x total mults
# E-mail logs to: (none)
# Upload log at: https://www.cqww.com/logcheck/
# Mail logs to: (none)
# Find rules at: https://www.cqww.com/rules.htm
# Cabrillo name: CQ-WW-CW

# pylint: disable=invalid-name, unused-argument, unused-variable, c-extension-no-member, unused-import

import datetime
Expand Down
Loading

0 comments on commit a240f08

Please sign in to comment.