Page 1 of 1

rumlogng and cocoa modem

Posted: Fri 4. Dec 2015, 17:16
by m0pkz
Is anybody using this Rumlogng+Cocoamodem....trying to figure out how to save qso to rumlogng and trx settings?!

Regards, Kes.

Re: rumlogng and cocoa modem

Posted: Thu 31. Dec 2015, 08:27
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

Re: rumlogng and cocoa modem

Posted: Mon 11. Apr 2016, 12:00
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

Re: rumlogng and cocoa modem

Posted: Tue 12. Apr 2016, 06:22
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