added info to readme

This commit is contained in:
Michael Clemens 2021-10-07 10:47:24 +01:00
parent 66882ee12a
commit 858b5b1d8a
1 changed files with 49 additions and 1 deletions

View File

@ -2,4 +2,52 @@
A small python tool that can be used to query information from the Hardrock-50 amateur radio power amplifier as well as sending commands and therefore to modify settings
![Screenshot](/hr50ctl.jpg)
## Features
Queries the followingy data from the Hardrock-50:
* Status (RX/TX)
* Keying method
* Band
* Voltage
* Peak power of last transmission
* Average power of last transmission
* SWR
* Temperature
Example:
+---------+----------+----------+------------+
| STA: RX | PTT: COR | BND: 20M | VLT: 13.8V |
| PEP: 58 | AVG: 58 | SWR: 1.2 | TMP: 20C |
+---------+----------+----------+------------+
Enables the user to alter the following parameters of the Hardrock-50:
* Keying method (OFF, COR, PTT, QRP)
* Band
* Initiate tuning process during next transmission
## Usage
```
USAGE: # ./hr50ctl.py -b <band> -t -k <keying mode>
PARAMETERS:
-k: the following keying methods are available:
off, cor, ptt, qrp
This parameter changes the method how the HR50 will be put into TX mode.
-b: the following bands are available:
6, 10, 12, 15, 20, 17, 20, 30, 40, 60, 80, 160
This parameter changes the band of the HR50
-t: no parameter required.
This parameters initiates the tuning during the next PTT
EXAMPLES:
Change the band to 12m: # ./hr50ctl.py -b 12
Change the keying method to PTT: # ./hr50ctl.py -k ptt
Change the band to 6m and tune: # ./hr50ctl.py -b 6 -t
```
## Screenshots
![Screenshot](/hr50ctl.jpg)