hawkeye camera support(not tested)
This commit is contained in:
9
framework/Inspectron.HawkEye/Packets/EPacketType.cs
Normal file
9
framework/Inspectron.HawkEye/Packets/EPacketType.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Inspectron.HawkEye
|
||||
{
|
||||
public enum EPacketType
|
||||
{
|
||||
Test,
|
||||
ImageData,
|
||||
ImageRequest
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace Inspectron.HawkEye
|
||||
{
|
||||
public class ImageRequestPacket
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
10
framework/Inspectron.HawkEye/Packets/Packet.cs
Normal file
10
framework/Inspectron.HawkEye/Packets/Packet.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
namespace Inspectron.HawkEye
|
||||
{
|
||||
public class Packet
|
||||
{
|
||||
public EPacketType PacketType { get; set; }
|
||||
public byte[] Payload { get; set; }
|
||||
}
|
||||
}
|
||||
12
framework/Inspectron.HawkEye/Packets/PacketImage.cs
Normal file
12
framework/Inspectron.HawkEye/Packets/PacketImage.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Inspectron.HawkEye
|
||||
{
|
||||
public class PacketImage
|
||||
{
|
||||
public uint TriggerId { get; set; }
|
||||
public uint PacketId { get; set; }
|
||||
public uint TotalPackets { get; set; }
|
||||
|
||||
public uint StartIndex { get; set; }
|
||||
public byte[] Data { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user