12 lines
206 B
C#
12 lines
206 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NucuCar.Sensors.Abstractions
|
|||
|
{
|
|||
|
public enum SensorStateEnum : ushort
|
|||
|
{
|
|||
|
Error = 0,
|
|||
|
Uninitialized = 1,
|
|||
|
Initialized = 2,
|
|||
|
Disabled = 3,
|
|||
|
}
|
|||
|
}
|