Compare commits
11 Commits
b21dc720ed
...
feature/wi
Author | SHA256 | Date | |
---|---|---|---|
d14ae528c0 | |||
a72c0673b1 | |||
999af9d888 | |||
8a8bcd078b | |||
59b8c3e2b2 | |||
06c6612ef6 | |||
e790660c36 | |||
3c972296ce | |||
8672241151 | |||
25b0a11694 | |||
effd5c19e9 |
60
README.md
60
README.md
@ -77,31 +77,35 @@ Sntp <|-- Metrics
|
|||||||
#### Example
|
#### Example
|
||||||
```
|
```
|
||||||
burner_fault_pending 1
|
burner_fault_pending 1
|
||||||
circulation_pump_enabled 0
|
circulation_pump_enabled 1
|
||||||
burner_enabled 1
|
burner_enabled 0
|
||||||
safety_contact_enabled 1
|
safety_contact_enabled 0
|
||||||
chamber_temperature 21.812500
|
chamber_temperature 58.750000
|
||||||
chamber_temperature_avg10 21.837500
|
chamber_temperature_avg10 58.931252
|
||||||
chamber_temperature_avg60 21.825521
|
chamber_temperature_avg60 59.190475
|
||||||
inlet_flow_temperature 22.437500
|
chamber_temperature_pred60 55.870998
|
||||||
inlet_flow_temperature_avg10 22.437500
|
inlet_flow_temperature 53.875000
|
||||||
inlet_flow_temperature_avg60 22.434896
|
inlet_flow_temperature_avg10 53.900002
|
||||||
outdoor_temperature 21.937500
|
inlet_flow_temperature_avg60 53.994320
|
||||||
outdoor_temperature_avg10 21.937500
|
inlet_flow_temperature_pred60 52.848743
|
||||||
outdoor_temperature_avg60 21.933594
|
outdoor_temperature 18.000000
|
||||||
return_flow_temperature 22.375000
|
outdoor_temperature_avg10 18.006250
|
||||||
return_flow_temperature_avg10 22.375000
|
outdoor_temperature_avg60 18.002840
|
||||||
return_flow_temperature_avg60 22.375000
|
outdoor_temperature_pred60 18.050785
|
||||||
|
return_flow_temperature 48.625000
|
||||||
|
return_flow_temperature_avg10 48.718750
|
||||||
|
return_flow_temperature_avg60 48.846592
|
||||||
|
return_flow_temperature_pred60 47.383083
|
||||||
chamber_temperature_state 0
|
chamber_temperature_state 0
|
||||||
outdoor_temperature_state 0
|
outdoor_temperature_state 0
|
||||||
inlet_flow_temperature_state 0
|
inlet_flow_temperature_state 0
|
||||||
return_flow_temperature_state 0
|
return_flow_temperature_state 0
|
||||||
safety_state 0
|
safety_state 0
|
||||||
control_state 5
|
control_state 3
|
||||||
sntp_state 0
|
sntp_state 0
|
||||||
system_unixtime 1734814285
|
system_unixtime 1735242392
|
||||||
uptime_seconds 90
|
uptime_seconds 40
|
||||||
wifi_rssi -63
|
wifi_rssi -74
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Status Encoding
|
#### Status Encoding
|
||||||
@ -131,15 +135,15 @@ wifi_rssi -63
|
|||||||
##### Control Loop
|
##### Control Loop
|
||||||
- control_state
|
- control_state
|
||||||
|
|
||||||
| Enum eControlState in [control.h](main/control.h) | Value | Description |
|
| Enum eControlState in [control.h](main/control.h) | Value | Description |
|
||||||
|---------------------------------------------------|-------|------------------------------------|
|
|---------------------------------------------------|-------|--------------------------------------------------|
|
||||||
| CONTROL_STARTING | 0 | |
|
| CONTROL_STARTING | 0 | |
|
||||||
| CONTROL_HEATING | 1 | Burner running |
|
| CONTROL_HEATING | 1 | Burner running |
|
||||||
| CONTROL_OUTDOOR_TOO_WARM | 2 | Heating not needed |
|
| CONTROL_OUTDOOR_TOO_WARM | 2 | Heating not needed |
|
||||||
| CONTROL_RETURN_FLOW_TOO_WARM | 3 | Heating not needed |
|
| CONTROL_RETURN_FLOW_TOO_WARM | 3 | Heating not needed |
|
||||||
| CONTROL_BURNER_FAULT | 4 | Burner reported fault |
|
| CONTROL_FAULT_BURNER | 4 | Burner reported fault after threshold is reached |
|
||||||
| CONTROL_FAULT_SAFETY | 5 | Unable to control due safety fault |
|
| CONTROL_FAULT_SAFETY | 5 | Unable to control due safety fault |
|
||||||
| CONTROL_FAULT_SNTP | 6 | Unable to control due SNTP fault |
|
| CONTROL_FAULT_SNTP | 6 | Unable to control due SNTP fault |
|
||||||
|
|
||||||
##### SNTP Client
|
##### SNTP Client
|
||||||
- sntp_state
|
- sntp_state
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include "freertos/FreeRTOS.h"
|
#include "freertos/FreeRTOS.h"
|
||||||
#include "freertos/task.h"
|
#include "freertos/task.h"
|
||||||
|
#include "esp_timer.h"
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
#include "control.h"
|
#include "control.h"
|
||||||
#include "outputs.h"
|
#include "outputs.h"
|
||||||
@ -11,7 +12,8 @@
|
|||||||
|
|
||||||
#define RETURN_FLOW_TEMPERATURE_LOWER_LIMIT_DAY 30.0
|
#define RETURN_FLOW_TEMPERATURE_LOWER_LIMIT_DAY 30.0
|
||||||
#define RETURN_FLOW_TEMPERATURE_LOWER_LIMIT_NIGHT 25.0
|
#define RETURN_FLOW_TEMPERATURE_LOWER_LIMIT_NIGHT 25.0
|
||||||
#define CHAMPER_TEMPERATURE_TARGET 70.0
|
#define CHAMPER_TEMPERATURE_TARGET 80.0
|
||||||
|
#define BURNER_FAULT_DETECTION_THRESHOLD (60U * 3U) // Detect burner fault if after 3 minutes no burner start detected
|
||||||
|
|
||||||
static const char *TAG = "smart-oil-heater-control-system-control";
|
static const char *TAG = "smart-oil-heater-control-system-control";
|
||||||
static eControlState sControlState = CONTROL_STARTING;
|
static eControlState sControlState = CONTROL_STARTING;
|
||||||
@ -54,17 +56,25 @@ void initControl(void)
|
|||||||
void taskControl(void *pvParameters)
|
void taskControl(void *pvParameters)
|
||||||
{
|
{
|
||||||
bool bHeatingInAction = false;
|
bool bHeatingInAction = false;
|
||||||
|
bool bBurnerFaultDetected = false;
|
||||||
|
int64_t i64BurnerEnableTimestamp = esp_timer_get_time();
|
||||||
|
|
||||||
|
time_t now;
|
||||||
|
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
|
// Get the current time
|
||||||
|
time(&now);
|
||||||
|
ESP_LOGW(TAG, "Control loop time: %lli", now);
|
||||||
vTaskDelay(PERIODIC_INTERVAL * 1000U / portTICK_PERIOD_MS);
|
vTaskDelay(PERIODIC_INTERVAL * 1000U / portTICK_PERIOD_MS);
|
||||||
|
|
||||||
if (getSafetyState() != SAFETY_NO_ERROR)
|
if (getSafetyState() != SAFETY_NO_ERROR)
|
||||||
{
|
{
|
||||||
ESP_LOGW(TAG, "Control not possible due to safety fault!");
|
//ESP_LOGW(TAG, "Control not possible due to safety fault!");
|
||||||
sControlState = CONTROL_FAULT_SAFETY;
|
sControlState = CONTROL_FAULT_SAFETY;
|
||||||
if (bHeatingInAction == true)
|
if (bHeatingInAction == true)
|
||||||
{
|
{
|
||||||
ESP_LOGI(TAG, "Control not possible due to safety fault: Disable burner");
|
ESP_LOGW(TAG, "Control not possible due to safety fault: Disable burner");
|
||||||
bHeatingInAction = false;
|
bHeatingInAction = false;
|
||||||
setCirculationPumpState(ENABLED);
|
setCirculationPumpState(ENABLED);
|
||||||
setBurnerState(DISABLED);
|
setBurnerState(DISABLED);
|
||||||
@ -79,7 +89,7 @@ void taskControl(void *pvParameters)
|
|||||||
sControlState = CONTROL_FAULT_SNTP;
|
sControlState = CONTROL_FAULT_SNTP;
|
||||||
if (bHeatingInAction == true)
|
if (bHeatingInAction == true)
|
||||||
{
|
{
|
||||||
ESP_LOGI(TAG, "Control not possible due to sntp fault: Disable burner");
|
ESP_LOGW(TAG, "Control not possible due to sntp fault: Disable burner");
|
||||||
bHeatingInAction = false;
|
bHeatingInAction = false;
|
||||||
setCirculationPumpState(ENABLED);
|
setCirculationPumpState(ENABLED);
|
||||||
setBurnerState(DISABLED);
|
setBurnerState(DISABLED);
|
||||||
@ -93,7 +103,7 @@ void taskControl(void *pvParameters)
|
|||||||
|
|
||||||
if (bHeatingInAction == true)
|
if (bHeatingInAction == true)
|
||||||
{
|
{
|
||||||
if (getChamberTemperature().fCurrentValue >= currentControlEntry.fChamberTemperature)
|
if ((getChamberTemperature().fCurrentValue >= currentControlEntry.fChamberTemperature) || (getChamberTemperature().predict60s.fValue >= currentControlEntry.fChamberTemperature))
|
||||||
{
|
{
|
||||||
ESP_LOGI(TAG, "Chamber Target Temperature reached: Disable burner");
|
ESP_LOGI(TAG, "Chamber Target Temperature reached: Disable burner");
|
||||||
bHeatingInAction = false;
|
bHeatingInAction = false;
|
||||||
@ -105,12 +115,27 @@ void taskControl(void *pvParameters)
|
|||||||
{
|
{
|
||||||
if (bHeatingInAction)
|
if (bHeatingInAction)
|
||||||
{
|
{
|
||||||
// TODO: Check burner fault signal here
|
int64_t i64Delta = esp_timer_get_time() - i64BurnerEnableTimestamp;
|
||||||
|
|
||||||
|
if ((i64Delta / 1000000U) >= BURNER_FAULT_DETECTION_THRESHOLD)
|
||||||
|
{
|
||||||
|
if (getBurnerError() == FAULT)
|
||||||
|
{
|
||||||
|
ESP_LOGW(TAG, "Detected burner fault after %lli seconds!", (i64Delta / 1000000U));
|
||||||
|
ESP_LOGW(TAG, "Control not possible due to burner fault: Disable burner");
|
||||||
|
sControlState = CONTROL_FAULT_BURNER;
|
||||||
|
bHeatingInAction = false;
|
||||||
|
bBurnerFaultDetected = true;
|
||||||
|
setCirculationPumpState(ENABLED);
|
||||||
|
setBurnerState(DISABLED);
|
||||||
|
setSafetyControlState(ENABLED);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bHeatingInAction == false)
|
if ((bHeatingInAction == false) && (bBurnerFaultDetected == false))
|
||||||
{
|
{
|
||||||
if ((getReturnFlowTemperature().average60s.fValue <= currentControlEntry.fReturnFlowTemperature) && (getChamberTemperature().fCurrentValue <= 45.0))
|
if ((getReturnFlowTemperature().average60s.fValue <= currentControlEntry.fReturnFlowTemperature) && (getChamberTemperature().fCurrentValue <= 45.0))
|
||||||
{
|
{
|
||||||
@ -119,6 +144,7 @@ void taskControl(void *pvParameters)
|
|||||||
setCirculationPumpState(ENABLED);
|
setCirculationPumpState(ENABLED);
|
||||||
setBurnerState(ENABLED);
|
setBurnerState(ENABLED);
|
||||||
setSafetyControlState(ENABLED);
|
setSafetyControlState(ENABLED);
|
||||||
|
i64BurnerEnableTimestamp = esp_timer_get_time();
|
||||||
sControlState = CONTROL_HEATING;
|
sControlState = CONTROL_HEATING;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -9,7 +9,7 @@ typedef enum _ControlState
|
|||||||
CONTROL_HEATING,
|
CONTROL_HEATING,
|
||||||
CONTROL_OUTDOOR_TOO_WARM,
|
CONTROL_OUTDOOR_TOO_WARM,
|
||||||
CONTROL_RETURN_FLOW_TOO_WARM,
|
CONTROL_RETURN_FLOW_TOO_WARM,
|
||||||
CONTROL_BURNER_FAULT,
|
CONTROL_FAULT_BURNER,
|
||||||
CONTROL_FAULT_SAFETY,
|
CONTROL_FAULT_SAFETY,
|
||||||
CONTROL_FAULT_SNTP,
|
CONTROL_FAULT_SNTP,
|
||||||
} eControlState;
|
} eControlState;
|
||||||
|
@ -16,10 +16,10 @@ static const char *TAG = "smart-oil-heater-control-system-inputs";
|
|||||||
const uint8_t uBurnerFaultPin = 19U;
|
const uint8_t uBurnerFaultPin = 19U;
|
||||||
const uint8_t uDS18B20Pin = 4U;
|
const uint8_t uDS18B20Pin = 4U;
|
||||||
|
|
||||||
const onewire_addr_t uChamperTempSensorAddr = 0x78000000c6c2f728;
|
const onewire_addr_t uChamperTempSensorAddr = 0xd00000108cd01d28;
|
||||||
const onewire_addr_t uOutdoorTempSensorAddr = 0x78000000c6c2f728;
|
const onewire_addr_t uOutdoorTempSensorAddr = 0x78000000c6c2f728;
|
||||||
const onewire_addr_t uInletFlowTempSensorAddr = 0x78000000c6c2f728;
|
const onewire_addr_t uInletFlowTempSensorAddr = 0x410000108b8c0628;
|
||||||
const onewire_addr_t uReturnFlowTempSensorAddr = 0x78000000c6c2f728;
|
const onewire_addr_t uReturnFlowTempSensorAddr = 0x90000108cc77c28;
|
||||||
|
|
||||||
onewire_addr_t uOneWireAddresses[MAX_DN18B20_SENSORS];
|
onewire_addr_t uOneWireAddresses[MAX_DN18B20_SENSORS];
|
||||||
float fDS18B20Temps[MAX_DN18B20_SENSORS];
|
float fDS18B20Temps[MAX_DN18B20_SENSORS];
|
||||||
@ -36,7 +36,7 @@ void taskInput(void *pvParameters);
|
|||||||
void initMeasurement(sMeasurement *pMeasurement);
|
void initMeasurement(sMeasurement *pMeasurement);
|
||||||
void updateAverage(sMeasurement *pMeasurement);
|
void updateAverage(sMeasurement *pMeasurement);
|
||||||
void updatePrediction(sMeasurement *pMeasurement);
|
void updatePrediction(sMeasurement *pMeasurement);
|
||||||
float linearRegressionPredict(const float *samples, size_t count, float futureIndex);
|
float linearRegressionPredict(const float *samples, size_t count, size_t bufferIndex, float futureIndex);
|
||||||
|
|
||||||
void initInputs(void)
|
void initInputs(void)
|
||||||
{
|
{
|
||||||
@ -162,6 +162,7 @@ void updatePrediction(sMeasurement *pMeasurement)
|
|||||||
predict60s->fValue = linearRegressionPredict(
|
predict60s->fValue = linearRegressionPredict(
|
||||||
predict60s->samples,
|
predict60s->samples,
|
||||||
predict60s->bufferCount,
|
predict60s->bufferCount,
|
||||||
|
predict60s->bufferIndex,
|
||||||
predict60s->bufferCount + 60.0f);
|
predict60s->bufferCount + 60.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -188,12 +189,12 @@ void taskInput(void *pvParameters)
|
|||||||
|
|
||||||
if (ds18x20_scan_devices(uDS18B20Pin, uOneWireAddresses, MAX_DN18B20_SENSORS, &sSensorCount) != ESP_OK)
|
if (ds18x20_scan_devices(uDS18B20Pin, uOneWireAddresses, MAX_DN18B20_SENSORS, &sSensorCount) != ESP_OK)
|
||||||
{
|
{
|
||||||
ESP_LOGE(TAG, "1-Wire device scan error!");
|
// ESP_LOGE(TAG, "1-Wire device scan error!");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!sSensorCount)
|
if (!sSensorCount)
|
||||||
{
|
{
|
||||||
ESP_LOGW(TAG, "No 1-Wire devices detected!");
|
// ESP_LOGW(TAG, "No 1-Wire devices detected!");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -202,14 +203,14 @@ void taskInput(void *pvParameters)
|
|||||||
if (sSensorCount > MAX_DN18B20_SENSORS)
|
if (sSensorCount > MAX_DN18B20_SENSORS)
|
||||||
{
|
{
|
||||||
sSensorCount = MAX_DN18B20_SENSORS;
|
sSensorCount = MAX_DN18B20_SENSORS;
|
||||||
ESP_LOGW(TAG, "More 1-Wire devices found than expected!");
|
// ESP_LOGW(TAG, "More 1-Wire devices found than expected!");
|
||||||
}
|
}
|
||||||
|
|
||||||
for (size_t iReadLoop = 0; iReadLoop < ONE_WIRE_LOOPS; iReadLoop++)
|
for (size_t iReadLoop = 0; iReadLoop < ONE_WIRE_LOOPS; iReadLoop++)
|
||||||
{
|
{
|
||||||
if (ds18x20_measure_and_read_multi(uDS18B20Pin, uOneWireAddresses, sSensorCount, fDS18B20Temps) != ESP_OK)
|
if (ds18x20_measure_and_read_multi(uDS18B20Pin, uOneWireAddresses, sSensorCount, fDS18B20Temps) != ESP_OK)
|
||||||
{
|
{
|
||||||
ESP_LOGE(TAG, "1-Wire devices read error");
|
// ESP_LOGE(TAG, "1-Wire devices read error");
|
||||||
vTaskDelay(PERIODIC_INTERVAL * 100U / portTICK_PERIOD_MS); // Wait 100ms if bus error occurred
|
vTaskDelay(PERIODIC_INTERVAL * 100U / portTICK_PERIOD_MS); // Wait 100ms if bus error occurred
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -217,7 +218,7 @@ void taskInput(void *pvParameters)
|
|||||||
for (int j = 0; j < sSensorCount; j++)
|
for (int j = 0; j < sSensorCount; j++)
|
||||||
{
|
{
|
||||||
float temp_c = fDS18B20Temps[j];
|
float temp_c = fDS18B20Temps[j];
|
||||||
ESP_LOGI(TAG, "Sensor: %08" PRIx64 " reports %lf°C", (uint64_t)uOneWireAddresses[j], temp_c);
|
// ESP_LOGI(TAG, "Sensor: %08" PRIx64 " reports %lf°C", (uint64_t)uOneWireAddresses[j], temp_c);
|
||||||
|
|
||||||
switch ((uint64_t)uOneWireAddresses[j])
|
switch ((uint64_t)uOneWireAddresses[j])
|
||||||
{
|
{
|
||||||
@ -226,17 +227,20 @@ void taskInput(void *pvParameters)
|
|||||||
sChamperTemperature.state = MEASUREMENT_NO_ERROR;
|
sChamperTemperature.state = MEASUREMENT_NO_ERROR;
|
||||||
updateAverage(&sChamperTemperature);
|
updateAverage(&sChamperTemperature);
|
||||||
updatePrediction(&sChamperTemperature);
|
updatePrediction(&sChamperTemperature);
|
||||||
|
break;
|
||||||
|
case ((uint64_t)uOutdoorTempSensorAddr):
|
||||||
sOutdoorTemperature.fCurrentValue = temp_c;
|
sOutdoorTemperature.fCurrentValue = temp_c;
|
||||||
sOutdoorTemperature.state = MEASUREMENT_NO_ERROR;
|
sOutdoorTemperature.state = MEASUREMENT_NO_ERROR;
|
||||||
updateAverage(&sOutdoorTemperature);
|
updateAverage(&sOutdoorTemperature);
|
||||||
updatePrediction(&sOutdoorTemperature);
|
updatePrediction(&sOutdoorTemperature);
|
||||||
|
break;
|
||||||
|
case ((uint64_t)uInletFlowTempSensorAddr):
|
||||||
sInletFlowTemperature.fCurrentValue = temp_c;
|
sInletFlowTemperature.fCurrentValue = temp_c;
|
||||||
sInletFlowTemperature.state = MEASUREMENT_NO_ERROR;
|
sInletFlowTemperature.state = MEASUREMENT_NO_ERROR;
|
||||||
updateAverage(&sInletFlowTemperature);
|
updateAverage(&sInletFlowTemperature);
|
||||||
updatePrediction(&sInletFlowTemperature);
|
updatePrediction(&sInletFlowTemperature);
|
||||||
|
break;
|
||||||
|
case ((uint64_t)uReturnFlowTempSensorAddr):
|
||||||
sReturnFlowTemperature.fCurrentValue = temp_c;
|
sReturnFlowTemperature.fCurrentValue = temp_c;
|
||||||
sReturnFlowTemperature.state = MEASUREMENT_NO_ERROR;
|
sReturnFlowTemperature.state = MEASUREMENT_NO_ERROR;
|
||||||
updateAverage(&sReturnFlowTemperature);
|
updateAverage(&sReturnFlowTemperature);
|
||||||
@ -264,7 +268,7 @@ void taskInput(void *pvParameters)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
float linearRegressionPredict(const float *samples, size_t count, float futureIndex)
|
float linearRegressionPredict(const float *samples, size_t count, size_t bufferIndex, float futureIndex)
|
||||||
{
|
{
|
||||||
if (count == 0)
|
if (count == 0)
|
||||||
return 0.0f; // No prediction possible with no data
|
return 0.0f; // No prediction possible with no data
|
||||||
@ -273,8 +277,11 @@ float linearRegressionPredict(const float *samples, size_t count, float futureIn
|
|||||||
|
|
||||||
for (size_t i = 0; i < count; i++)
|
for (size_t i = 0; i < count; i++)
|
||||||
{
|
{
|
||||||
float x = (float)i; // Time index
|
// Calculate the circular buffer index for the current sample
|
||||||
float y = samples[i]; // Sample value
|
size_t circularIndex = (bufferIndex + i + 1) % count;
|
||||||
|
|
||||||
|
float x = (float)i; // Time index
|
||||||
|
float y = samples[circularIndex]; // Sample value
|
||||||
|
|
||||||
sumX += x;
|
sumX += x;
|
||||||
sumY += y;
|
sumY += y;
|
||||||
@ -284,8 +291,8 @@ float linearRegressionPredict(const float *samples, size_t count, float futureIn
|
|||||||
|
|
||||||
// Calculate slope (m) and intercept (b) of the line: y = mx + b
|
// Calculate slope (m) and intercept (b) of the line: y = mx + b
|
||||||
float denominator = (count * sumX2 - sumX * sumX);
|
float denominator = (count * sumX2 - sumX * sumX);
|
||||||
if (fabs(denominator) < 1e-6) // Avoid division by zero
|
if (fabs(denominator) < 1e-6) // Avoid division by zero
|
||||||
return samples[count - 1]; // Return last value as prediction
|
return samples[bufferIndex]; // Return the latest value as prediction
|
||||||
|
|
||||||
float m = (count * sumXY - sumX * sumY) / denominator;
|
float m = (count * sumXY - sumX * sumY) / denominator;
|
||||||
float b = (sumY - m * sumX) / count;
|
float b = (sumY - m * sumX) / count;
|
||||||
|
@ -85,7 +85,7 @@ void checkSensorSanity(void)
|
|||||||
|
|
||||||
if (sCurrentMeasurement.state == MEASUREMENT_FAULT)
|
if (sCurrentMeasurement.state == MEASUREMENT_FAULT)
|
||||||
{
|
{
|
||||||
ESP_LOGE(TAG, "%s Sensor not found!", sanityChecks[i].name);
|
//ESP_LOGE(TAG, "%s Sensor not found!", sanityChecks[i].name);
|
||||||
sanityChecks[i].state = SENSOR_NOT_FOUND;
|
sanityChecks[i].state = SENSOR_NOT_FOUND;
|
||||||
sSafetyState = SAFETY_SENSOR_ERROR;
|
sSafetyState = SAFETY_SENSOR_ERROR;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user