Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 564 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 564 Bytes

Alturos.DeviceDiscovery

Alturos.DeviceDiscovery

Discover devices in a network over an udp broadcast

NuGet

Quick install Alturos.DeviceDiscovery over NuGet

PM> install-package Alturos.DeviceDiscovery

Examples

MOXA NPort discovery

var detection = new UdpDeviceDetection();
var helloPackage = new byte[] { 0x01, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00 };
var packages = await detection.GetDeviceInfoPackagesAsync(4800, helloPackage, timeout: 1000);