using RGB.NET.Core;
namespace RGB.NET.Devices.WS281X.NodeMCU;
// ReSharper disable once InconsistentNaming
///
///
/// Represents a generic information for a .
///
public class NodeMCUWS2812USBDeviceInfo : IRGBDeviceInfo
{
#region Properties & Fields
///
public string DeviceName { get; }
///
public RGBDeviceType DeviceType => RGBDeviceType.LedStripe;
///
public string Manufacturer => "NodeMCU";
///
public string Model => "WS2812 WLAN";
///
public object? LayoutMetadata { get; set; }
#endregion
#region Constructors
///
/// Initializes a new instance of the class.
///
/// The name of this device.
public NodeMCUWS2812USBDeviceInfo(string name)
{
this.DeviceName = name;
}
#endregion
}