9 lines
159 B
C#
9 lines
159 B
C#
|
namespace InnovEnergy.Lib.Devices.Battery48TL;
|
||
|
|
||
|
public enum LedState
|
||
|
{
|
||
|
Off = 0,
|
||
|
On = 1,
|
||
|
BlinkingSlow = 2,
|
||
|
BlinkingFast = 3
|
||
|
}
|