Default temp limit

This commit is contained in:
Serge
2023-07-04 16:47:44 +02:00
parent db595d54f6
commit dc40b317f8
8 changed files with 26 additions and 27 deletions

View File

@@ -0,0 +1,19 @@
namespace GHelper.AnimeMatrix.Communication.Platform
{
internal abstract class UsbProvider : IDisposable
{
protected ushort VendorID { get; }
protected ushort ProductID { get; }
protected UsbProvider(ushort vendorId, ushort productId)
{
VendorID = vendorId;
ProductID = productId;
}
public abstract void Set(byte[] data);
public abstract byte[] Get(byte[] data);
public abstract void Dispose();
}
}