Reset value for Z-indexing
When working with the session-based interface, use the ZResetValue
property
to specify the reset value for Z-indexing 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 ZResetValue
to 62
.
ch.ZResetValue = 62
ch = Data acquisition counter input position channel 'ctr0' on device 'cDAQ1Mod5': EncoderType: X1 ZResetEnable: 1 ZResetValue: 62 ZResetCondition: BothHigh TerminalA: 'PFI0' TerminalB: 'PFI2' TerminalZ: 'PFI1' Name: '' ID: 'ctr0' Device: [1x1 daq.ni.CompactDAQModule] MeasurementType: 'Position'