Click or drag to resize

EDDeviceCreate Method

Supply a connection IP address or com port and the correct ED device will be created and returned
Example
using(EDDevice ed = EDDevice.Create("192.168.0.5")) { //the connection is opened automatically ed.Output[0] = 1; } //connection is closed and object disposed after using block

Namespace: Brainboxes.IO
Assembly: Brainboxes.IO (in Brainboxes.IO.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static EDDevice Create(
	string ipAddressOrComPort,
	int portOrBaudRate = 0,
	int timeout = 2000
)

Parameters

ipAddressOrComPort  String
either an IP address e.g. "192.168.0.1" or a com port name e.g. "COM3"
portOrBaudRate  Int32  (Optional)
optional either the IP port number e.g. 9500 or the com port baud rate e.g. 115200, if port not supplied it will be figured out by querying the device
timeout  Int32  (Optional)
The connection timeout

Return Value

EDDevice
EDDevice
See Also