hawkeye camera support(not tested)
This commit is contained in:
17
framework/Inspectron.HawkEye/UDPServer.cs
Normal file
17
framework/Inspectron.HawkEye/UDPServer.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace Inspectron.HawkEye
|
||||
{
|
||||
public class UDPServer
|
||||
{
|
||||
public UDPServer(string address, int port)
|
||||
{
|
||||
UDPSocket server = new UDPSocket();
|
||||
server.Server(address, port);
|
||||
server.Received += Server_Received;
|
||||
}
|
||||
|
||||
private void Server_Received(byte[] obj)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user