12-24-2013 12:54 PM
Hi, i have agilent oscilloscope DSO7012B ,i have started DEVELLOPING the interface of ,this device in labview but i have a great problem in verticale scale,I can't adjust between vertical scale and probe attenuation to have a vertical scale 10mV to 5V/div @ x 1 probe 100mV to 50V/div @ x 10 probe 1V to 500V/div @ x 100 probe 10V to 5000V/div @ x 1000 probe 100V to 50000V/div @ x 10000 probe 200mV to 100V/div @ 20:1
Solved! Go to Solution.
12-24-2013
01:07 PM
- last edited on
06-04-2025
11:18 AM
by
Content Cleaner
https://sine.ni.com/apps/utf8/niid_web_display.model_page?p_model_id=17333
(You might as well just use the existing driver)
12-24-2013 02:06 PM
thanks Mr Jeff·Þ·Bohrer ,but driver scale is controlled only by vertical range and probe attenuation in the driver
12-24-2013 02:34 PM
12-24-2013 02:56 PM
I try to create a knob to my ossillo to controll Volt/div i don't found this utility in the driver ,so ,i think that i can create this control with assembling the probe attenuation and the vertical range and such as :10mV to 5V/div @ x 1 probe || 100mV to 50V/div @ x 10 probe
12-24-2013 02:56 PM
I try to create a knob to my ossillo to controll Volt/div i don't found this utility in the driver ,so ,i think that i can create this control with assembling the probe attenuation and the vertical range and such as :10mV to 5V/div @ x 1 probe || 100mV to 50V/div @ x 10 probe
12-24-2013 03:40 PM
12-24-2013 04:28 PM
the code:
12-24-2013 05:35 PM
If I understand, you are going to have to do some arithmetic make use of graph property nodes. As I said, the scope does not accept volts/div commands. You simply specify a max voltage. I personally think this is a better option for the user. In any case, if you fix the graph size, you can use the knob to scale the graph. Say you have 10 divisions and want 1 volt per division. The actual setting you pass to the configure scope function is then 1 times 5 (the number of positive divisions. You could also cheat a bit and set the scope to it's volts/div physical knob and do a read of it's range value. The knob could be wired to a case statement with the actual range values. Just don't use a knob set for dbl. Use it as an integer with text labels.
12-24-2013
05:43 PM
- last edited on
06-04-2025
11:19 AM
by
Content Cleaner
Example
This uses a DAQ card but the principle is the same since a DAQ card is also by a maximum voltage. Look at the knob design.