rumlogng and cocoa modem

RUMlog, the Next Generation. Completely rewritten.
User avatar
m0pkz
Posts: 58
Joined: Sat 1. Feb 2014, 06:21

rumlogng and cocoa modem

Unread post by m0pkz »

Is anybody using this Rumlogng+Cocoamodem....trying to figure out how to save qso to rumlogng and trx settings?!

Regards, Kes.
User avatar
LA0FA
Posts: 45
Joined: Tue 19. Feb 2013, 22:34
Location: Kjeller, near Oslo, JO59mx
Contact:

Re: rumlogng and cocoa modem

Unread post by LA0FA »

Hi Kes,

I use below applescript to log qso in RumlogNG.It works fine on my end:


on run
tell application "cocoaModem 2.0"
set theCallsign to callsign of qso
set OpName to operator name of qso
set theMode to modemName
if the theMode = "psk modem" then
set theMode to "PSK"
end if
if the theMode = "wideband rtty modem" then
set theMode to "RTTY"
end if
if the theMode = "mfsk modem" then
set theMode to "MFSK"
end if
if the theMode = "CW modem" then
set theMode to "CW"
end if
end tell

tell application "RUMlogNG"
set callsign to theCallsign
set mode to theMode
logQSO
end tell
end run


the script is stored in the RUMLOGNG application folder and pointed at from
the cocoa modem "preferences" "Applescript" "QSO Log" menu.

73 de LA0FA
User avatar
m0pkz
Posts: 58
Joined: Sat 1. Feb 2014, 06:21

Re: rumlogng and cocoa modem

Unread post by m0pkz »

Hi Matthias,

What about putting rig on TX? Do you use script as well or cocoa PTTt. Got ts-590 but still no luck with transmit on cocoa...

Regards, m0pkz
User avatar
m0pkz
Posts: 58
Joined: Sat 1. Feb 2014, 06:21

Re: rumlogng and cocoa modem

Unread post by m0pkz »

Thank you Matthias for replay.
If ok will post here in case somebody else will need this info!!!
Once again ! THANK YOU!
-----
Hi,
you need to place in an own folder the pttscripts where cocoa modem is pointing to in the applescript tab of the cocoa modem preferences.
There are two scripts in this folder

pttKey.scpt:

tell application "RUMlogNG"
TxOn
end tell

pttQuit.scpt:
tell application "RUMlogNG"
TxOff
end tell


both scripts to be in above mentioned folder.


As long as your RumLogNG is configured to key your PTT the above scripts in cocoa modem will do the work.

Cheers
Matthias
Post Reply