0

Zaber デバイスを複数のシリアル ポートに接続し、それらすべてを 1 つのスクリプトから制御することはできますか? スクリプトはZaber コンソールで実行されており、いずれかのポートでデバイス間の動作を調整できるはずです。

4

1 に答える 1

0

はい、スクリプトでさらに多くのシリアル ポートを開くことができます。Zaber コンソール プログラムが通常行うすべての構成を複製するだけです。シリアル ポートが開いたら、会話オブジェクトを通常どおり使用できます。2 つのデバイス間の動きを調整するには、会話トピック オブジェクトを使用して応答を待ちます。詳細については、Zaber ライブラリのヘルプ ファイルを参照してください。これは、スクリプト エディタのヘルプ メニューにあります。

// Example C# script showing how to open a second serial port and coordinate 
// moves between the two.
#template(methods)

public override void Run()
{
    // First port is the one that Zaber Console has already opened.
    var portFacade1 = PortFacade;
    // Now, we're going to open COM2 in the script.
    // The using block makes sure we don't leave it open.
    using (var portFacade2 = CreatePortFacade())
    {
        portFacade2.Open("COM2");

        // Start a conversation with a device on each port.
        // Note that the device numbers can be the same because they're on
        // separate ports.
        var conversation1 = portFacade1.GetConversation(1);
        var conversation2 = portFacade2.GetConversation(1);

        while ( ! IsCanceled)
        {
            MoveBoth(conversation1, conversation2, 0);
            MoveBoth(conversation1, conversation2, 10000);
        }
    }
}

private void MoveBoth(
    Conversation conversation1, 
    Conversation conversation2, 
    int position)
{
    // Start a topic to wait for the response
    var topic = conversation1.StartTopic();
    // Send the command using Device.Send() instead of Request()
    // Note the topic.MessageId parameter to coordinate request and response
    conversation1.Device.Send(
            Command.MoveAbsolute, 
            position, 
            topic.MessageId);

    // While c1 is moving, also request c2 to move. This one just uses
    // Request() because we want to wait until it finishes.
    conversation2.Request(Command.MoveAbsolute, position);

    // We know c2 has finished moving, so now wait until c1 finishes.
    topic.Wait();
    topic.Validate();
}

private ZaberPortFacade CreatePortFacade()
{
    var packetConverter = new PacketConverter();
    packetConverter.MillisecondsTimeout = 50;
    var defaultDeviceType = new DeviceType();
    defaultDeviceType.Commands = new List<CommandInfo>();
    var portFacade = new ZaberPortFacade();
    portFacade.DefaultDeviceType = defaultDeviceType;
    portFacade.QueryTimeout = 1000;
    portFacade.Port = new TSeriesPort(
        new System.IO.Ports.SerialPort(), 
        packetConverter);
    portFacade.DeviceTypes = new List<DeviceType>();
    return portFacade;
}
于 2012-04-19T19:09:55.027 に答える