1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00
RGB.NET/RGB.NET.Devices.WS281X/NodeMCU/NodeMCUUpdateMode.cs

20 lines
497 B
C#

namespace RGB.NET.Devices.WS281X.NodeMCU;
/// <summary>
/// Contaisn a list of possible update-modes for NodeMCU-devices.
/// </summary>
// ReSharper disable once InconsistentNaming
public enum NodeMCUUpdateMode
{
/// <summary>
/// Updates through the HTTP-REST-API.
/// Slow, but reliable.
/// </summary>
Http,
/// <summary>
/// Updates through a UDP-connection.
/// Fast, but might skip updates if the network connection is bad.
/// </summary>
Udp
}