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