only: more lua gauges

This commit is contained in:
rusefillc 2024-03-23 18:00:44 -04:00
parent 5b61136dea
commit afc4e0e9b4
2 changed files with 12 additions and 0 deletions

View File

@ -125,6 +125,12 @@ enum class SensorType : unsigned char {
LuaGauge1,
LuaGauge2,
LuaGauge3,
LuaGauge4,
LuaGauge5,
LuaGauge6,
LuaGauge7,
LuaGauge8,
IgnKeyVoltage,

View File

@ -21,6 +21,12 @@ static FunctionalSensor auxSensors[] = {
StoredValueSensor luaGauges[] = {
{ SensorType::LuaGauge1, MS2NT(5000) },
{ SensorType::LuaGauge2, MS2NT(5000) },
{ SensorType::LuaGauge3, MS2NT(5000) },
{ SensorType::LuaGauge4, MS2NT(5000) },
{ SensorType::LuaGauge5, MS2NT(5000) },
{ SensorType::LuaGauge6, MS2NT(5000) },
{ SensorType::LuaGauge7, MS2NT(5000) },
{ SensorType::LuaGauge8, MS2NT(5000) },
};