Can you change measurement mode via SCPI commands? I've tried about every permutation of the programming manual but cant get the xdm1041 to switch to AC Current measurement mode. Help please?
I use this python string ....servolt.write(b'CONF:CURR:AC 5 ').... do not use the beginning and ending periods they are to make it clear where the command text starts on this comment reply. the b' is to make python send it as binary not encoded. The CONF: puts us in CONFiguration menu. CURR is current and AC is for AC mode and 5 is the 5 amp scale. Change the 5 to what ever you need for a scale. Hope this helps. Let me know if you get it working or not. RJ
Very helpful!!! Thank you.
You're welcome!
Can you change measurement mode via SCPI commands? I've tried about every permutation of the programming manual but cant get the xdm1041 to switch to AC Current measurement mode. Help please?
I use this python string ....servolt.write(b'CONF:CURR:AC 5
').... do not use the beginning and ending periods they are to make it clear where the command text starts on this comment reply. the b' is to make python send it as binary not encoded. The CONF: puts us in CONFiguration menu. CURR is current and AC is for AC mode and 5 is the 5 amp scale. Change the 5 to what ever you need for a scale.
Hope this helps.
Let me know if you get it working or not.
RJ