10 lines
No EOL
191 B
C#
10 lines
No EOL
191 B
C#
namespace NucuCar.Sensors.Abstractions
|
|
{
|
|
public enum SensorStateEnum : ushort
|
|
{
|
|
Error = 0,
|
|
Uninitialized = 1,
|
|
Initialized = 2,
|
|
Disabled = 3,
|
|
}
|
|
} |