Initial commit

Conversion of the UWP app into a .NET Core app for portability. Requires .NET Core 2.0 and C# 7.1
This commit is contained in:
2018-03-18 23:04:15 -05:00
commit 97c4febdf5
19 changed files with 1896 additions and 0 deletions

21
FindUnitBroadcast.cs Normal file
View File

@ -0,0 +1,21 @@
namespace ScreenLogicConnect
{
public class FindUnitBroadcast
{
public static readonly sbyte[] data = new sbyte[]
{
ByteHelper.getLowWordLowByte(1),
ByteHelper.getLowWordHighByte(1),
ByteHelper.getHighWordLowByte(1),
ByteHelper.getHighWordHighByte(1),
0,
0,
0,
0,
};
public FindUnitBroadcast()
{
}
}
}