MATES / Modular Automatic Test Equipment System API  2.5.0.0
mates_test_10.cs
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Viresco.Mates;
namespace unit_tests
{
[TestClass]
public class mates_test_10
{
[TestMethod]
public void TestMethod()
{
using (Mates mates = new Mates("mates_REMOTE.mon", 1))
{
try
{
Dio3Node dio = mates.NewDio3Node(NodeId.mates_dio3_mk1_1);
// Send 8 of inputs to the outputs.
int output = dio.GetDoutAll();
int input = dio.GetDinAll();
dio.SetDoutAll((output & 0xFFF00) | (input & 0xFF));
}
catch
{
Console.Write("Cannot discover node.\n");
}
}
}
}
}