I am using quisk version 4.2.12 in remote mode. The hot key at the control end changes the PTT button to red but doesn't key the transmitter. I changed the code in OnReadSound in quisk.py to fix it.
Maybe there is a better way, but this gets it going.
if ptt is True and not ptt_button_down:
self.SetPTT(True)
# code added to set remote PTT when hot key pressed Don Magee
if application.remote_control_head:
application.Hardware.RemoteCtlSend('PTT' + ';1\n')
elif ptt is False and ptt_button_down:
self.SetPTT(False)
if application.remote_control_head:
application.Hardware.RemoteCtlSend('PTT' + ';0\n')
Don Magee