I am trying to get the status of the various AP800 settings via the serial port. I can set parameters, like preset, but If I try to query the status I get nothing. The AP800 documentation says that leaving the preset number as null should return the present setting.
The following sets the preset to 1 and returns a ton of status:
errortxt = hs.SendToComPort(comport,"#10 PRESET 1"&CHR(13))
This returns nothing:
errortxt = hs.SendToComPort(comport,"#10 PRESET"&CHR(13))
Am I missing something? I have tried several other commands looking for status with the same results.
Thanks, Gardner
The following sets the preset to 1 and returns a ton of status:
errortxt = hs.SendToComPort(comport,"#10 PRESET 1"&CHR(13))
This returns nothing:
errortxt = hs.SendToComPort(comport,"#10 PRESET"&CHR(13))
Am I missing something? I have tried several other commands looking for status with the same results.
Thanks, Gardner
Comment