Managed to get my dongle in last night. Hacked together something in python to translate the AR - ONE command to the HDSDR CAT interface, then used VAC to pipe audio into DSD. Using my old discriminator tapped Pro-95 as the control channel audio. Works awesome, even with the included antenna on the SDR dongle

Worlds cheapest computer controlled trunk tracking pro voice decoding scanner.
In case someone else wants to try it, get com0com, make 2 pairs of com ports(com34/com35,com36/com37) and hook com 34 to Unitrunker and com 37 to HDSDR
Code:
import serial
ser = serial.Serial('COM35', 9600, timeout=1)
ser.open
ser2 = serial.Serial('COM36', 9600, timeout=1)
ser2.open
print "ports opened"
while 1:
freqency = ser.readline()
print "read" + freqency
freqency = "FA0" + freqency[2:12] +";"
if len(freqency) > 13:
ser2.write(freqency)
ser2.write(freqency)
ser2.write(freqency)
print freqency
first i just want to say thanks for the info you have provided
here is my system
laptop with intel hd audio (onboard)
windows 7 premium 64bit
i have two ezcap 666 devices
i have latest unitrunker, hdsdr and got everything installed you said
python 2.7 and pyserial 2.6 and saved your script
here is where i am having problems
i first start VAC then start hdsdr then start unitrunker.
when i goto add the recievers could you please be exact in what i need to add (for each dongle) and all the settings
when i run your script it is running and i have hdsdr set to com37 like you said and it is activated but your dos windows only shows info when i change the "park" and hit apply or run in unitrunker
thats the only time i see any info besides the FA0 or whatever it is
anyhow do i need to be running TWO hdsdr`s?
do i need TWO sound cards?
please help i know im close