1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00
2021-08-01 16:40:13 +02:00

16 lines
328 B
C#

// ReSharper disable InconsistentNaming
#pragma warning disable 1591
namespace RGB.NET.Devices.PicoPi.Enum
{
/// <summary>
/// Contains a list of possible ways of communication with the device.
/// </summary>
public enum UpdateMode
{
Auto = 0x00,
HID = 0x01,
BULK = 0x02,
}
}