Files
dotnet-screenlogic/FindUnitBroadcast.cs
Parnic 97c4febdf5 Initial commit
Conversion of the UWP app into a .NET Core app for portability. Requires .NET Core 2.0 and C# 7.1
2018-03-18 23:04:19 -05:00

22 lines
462 B
C#

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()
{
}
}
}