I'm connected to a SBC by network and like to list and access all connected devcies. I try the following code:
Code: Select all
Manager manager = new Manager();
manager.Attach += Manager_Attach;
manager.Open();
Net.EnableServerDiscovery(ServerType.SBC);
Fo my case I try to connect to an IfKit 8/8/8 that is connected to the SBC. I know, that in Phidgets22 it's replaces by DigitalIO but this code:
Code: Select all
DigitalInput dio = new DigitalInput();
dio.IsRemote = true;
dio.Open();
Can you give me a push in the right direction please?