You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

21 lines
283 B

#!/bin/bash
RIGCTL=$(which rigctl)
PARAMETERS="-m 2"
DELAY="60"
BANDS="14074000 21074000 28074000"
# wait for full minute
sleep $(((60 - $(date +%s) % 60)-1))
# start switching
while true
do
for band in $BANDS
do
$RIGCTL $PARAMETERS F $band
sleep $DELAY
done
done