Enable reset for Z-indexing
Use the ZResetEnable
property to allow
the Z-indexing to be reset on a counter input 'Position'
channel.
Create a session and add a counter input Position
channel.
s = daq.createSession('ni'); ch = addCounterInputChannel(s,'cDAQ1Mod5',0,'Position')
ch = Data acquisition counter input position channel 'ctr0' on device 'cDAQ1Mod5': EncoderType: X1 ZResetEnable: 0 ZResetValue: 0 ZResetCondition: BothHigh TerminalA: 'PFI0' TerminalB: 'PFI2' TerminalZ: 'PFI1' Name: '' ID: 'ctr0' Device: [1x1 daq.ni.CompactDAQModule] MeasurementType: 'Position'
Change the ZResetEnable
property value
to 1
.
ch.ZResetEnable = 1
ch = Data acquisition counter input position channel 'ctr0' on device 'cDAQ1Mod5': EncoderType: X1 ZResetEnable: 1 ZResetValue: 0 ZResetCondition: BothHigh TerminalA: 'PFI0' TerminalB: 'PFI2' TerminalZ: 'PFI1' Name: '' ID: 'ctr0' Device: [1x1 daq.ni.CompactDAQModule] MeasurementType: 'Position'