Counter/Timer

cancel
Showing results for 
Search instead for 
Did you mean: 

Flowmeter output acquisition through NI 6008 with python code

Solved!
Go to solution

Dear,

 

I'm struggling to make a simple python script work.

I 'm using a flowmeter sensor (FTB601 from Omega) I would like to acquire the count with the NI 6008 (PFI0 port) to measure the frequency and plot the flowrate. Seen the signal (square wave) ranges from 60 to 1200 Hz, I must use the PFI0 port. If I'm not wrong, the DI ports may fail over 500 Hz.

 

To do it, I'm coding with Python (3.11.4) with the nidaqmx library.

Here is the code I used:

import nidaqmx
with nidaqmx.Task() as task:

try:

task.ci_channels.add_ci_count_edges_chan("Dev1/ctr0")
count = task.read()
print(count)

except KeyboardInterrupt:

print("Count stopped.")

 

For a reason I ignore, It doesn't work as expected and I get the following error message:

DaqError: Requested value is not a supported value for this property. The property value may be invalid because it conflicts with another property.
Property: DAQmx_CI_CountEdges_ActiveEdge
Requested Value: DAQmx_Val_Rising
Possible Values: DAQmx_Val_Falling
Channel Name: Dev1/ctr0

Task Name: _unnamedTask<18>

Status Code: -200077

I didn't find a solution on the tens of forum I searched in.

Could someone help me with this issue ?

 

I tried adding the following arguments to the function

task.ci_channels.add_ci_count_edges_chan('Dev1/ctr0', initial_count=0, edge=Edge.RISING, count_direction=CountDirection.COUNT_UP)

but then, it's saying that "Edge is not defined", or "CountDirection" is not defined.

 

Bet regards,

 

TSF

 

0 Kudos
Message 1 of 3
(2,060 Views)
Solution
Accepted by topic author TSF_BE
You need to import the enum constant. The following code works for USB-6008.
 
import nidaqmx
import pprint
from nidaqmx.constants import Edge

pp = pprint.PrettyPrinter(indent=4)

with nidaqmx.Task() as task:
    task.ci_channels.add_ci_count_edges_chan("6008/ctr0", edge=Edge.FALLING)

    task.start()

    print('1 Channel 1 Sample Read: ')
    data = task.read()
    pp.pprint(data)

    print('1 Channel N Samples Read: ')
    data = task.read(number_of_samples_per_channel=8)
    pp.pprint(data)
-------------------------------------------------------
Applications Engineer | TME Systems
https://tmesystems.net/
Message 2 of 3
(2,022 Views)

Hi ZYOng,

 

Thanks for the reply and the solution ! Now, I don't have the error code anymore. Thanks a lot !

0 Kudos
Message 3 of 3
(2,015 Views)