hand merge

This commit is contained in:
Matthew Kennedy 2022-12-01 13:22:19 -08:00
parent e99c902e0f
commit 00b9bf9d35
2 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,7 @@ enum class Fault : uint8_t
SensorDidntHeat = 3,
SensorOverheat = 4,
SensorUnderheat = 5,
SensorNoHeatSupply = 6,
};
struct StandardData
@ -55,6 +56,8 @@ static const char* describeFault(Fault fault) {
return "Sensor overheat";
case Fault::SensorUnderheat:
return "Sensor underheat";
case Fault::SensorNoHeatSupply:
return "Sensor no heat supply";
}
return "Unknown";