1

我有一个 NI-DAQ 6212,我正在尝试使用 C# 将数字输出设置为三态模式。除了此参考http://zone.ni.com/reference/en-XX/help/370473H-01/mstudiowebhelp/html/bd33b0d/,我找不到有关如何将其搁置的示例

我怎样才能做到这一点?非常感谢任何输入!

谢谢!

4

1 回答 1

1

NIDAQ 库的文档记录很差,当我不得不处理它们时,没有多少我记得的例子。我继承了一些控制电压控制器的代码,我不得不稍微使用它,但我并不完全理解这个库。

但我很乐意提供我所能提供的,因为我知道这个库是多么令人沮丧。

try
{
    using (NationalInstruments.DAQmx.Task digitalWriteTask = new NationalInstruments.DAQmx.Task())
    {
        string[] channels = DaqSystem.Local.GetPhysicalChannels(PhysicalChannelTypes.DOPort, PhysicalChannelAccess.External);

        // Here is how I command the voltage of the system.
        digitalWriteTask.DOChannels.CreateChannel(channels[1], "port1", ChannelLineGrouping.OneChannelForAllLines);
        DigitalSingleChannelWriter writer = new DigitalSingleChannelWriter(digitalWriteTask.Stream);
        writer.WriteSingleSampleMultiLine(true, commandValue);

        // A clue I might be able to offer about DOChannel Tristate property?
        digitalWriteTask.DOChannels.All.Tristate = true;
    }
}
catch (Exception ex)
{
    Console.Out.WriteLine(ex.Message);
    return false;
}

检查NationalInstruments.DAQmx.Task后看起来好像有一个成员DOChannels。您应该能够对其进行迭代或选择All并设置Tristate属性。

至于之前或之后的任何事情,我不知道。

于 2016-05-26T18:36:13.813 回答