disable avg24h
This commit is contained in:
@ -129,10 +129,11 @@ void taskMetrics(void *pvParameters)
|
||||
u16MetricCounter++;
|
||||
|
||||
// Chamber Temperature Average 24h
|
||||
/*
|
||||
strcpy(aMetrics[u16MetricCounter].caMetricName, "chamber_temperature_avg24h");
|
||||
aMetrics[u16MetricCounter].type = FLOAT;
|
||||
aMetrics[u16MetricCounter].fMetricValue = getChamberTemperature().average24h.fValue;
|
||||
u16MetricCounter++;
|
||||
u16MetricCounter++;*/
|
||||
|
||||
// Chamber Temperature Predict 60s
|
||||
strcpy(aMetrics[u16MetricCounter].caMetricName, "chamber_temperature_pred60");
|
||||
@ -159,10 +160,11 @@ void taskMetrics(void *pvParameters)
|
||||
u16MetricCounter++;
|
||||
|
||||
// Inlet Flow Temperature Average 24h
|
||||
/*
|
||||
strcpy(aMetrics[u16MetricCounter].caMetricName, "inlet_flow_temperature_avg24h");
|
||||
aMetrics[u16MetricCounter].type = FLOAT;
|
||||
aMetrics[u16MetricCounter].fMetricValue = getInletFlowTemperature().average24h.fValue;
|
||||
u16MetricCounter++;
|
||||
u16MetricCounter++;*/
|
||||
|
||||
// Inlet Flow Temperature Predict 60s
|
||||
strcpy(aMetrics[u16MetricCounter].caMetricName, "inlet_flow_temperature_pred60");
|
||||
@ -189,11 +191,12 @@ void taskMetrics(void *pvParameters)
|
||||
u16MetricCounter++;
|
||||
|
||||
// Outdoor Temperature Average 24h
|
||||
/*
|
||||
strcpy(aMetrics[u16MetricCounter].caMetricName, "outdoor_temperature_avg24h");
|
||||
aMetrics[u16MetricCounter].type = FLOAT;
|
||||
aMetrics[u16MetricCounter].fMetricValue = getOutdoorTemperature().average24h.fValue;
|
||||
u16MetricCounter++;
|
||||
|
||||
*/
|
||||
// Outdoor Temperature Predict 60s
|
||||
strcpy(aMetrics[u16MetricCounter].caMetricName, "outdoor_temperature_pred60");
|
||||
aMetrics[u16MetricCounter].type = FLOAT;
|
||||
@ -219,10 +222,11 @@ void taskMetrics(void *pvParameters)
|
||||
u16MetricCounter++;
|
||||
|
||||
// Return Flow Temperature Average 24h
|
||||
/*
|
||||
strcpy(aMetrics[u16MetricCounter].caMetricName, "return_flow_temperature_avg24h");
|
||||
aMetrics[u16MetricCounter].type = FLOAT;
|
||||
aMetrics[u16MetricCounter].fMetricValue = getReturnFlowTemperature().average24h.fValue;
|
||||
u16MetricCounter++;
|
||||
u16MetricCounter++;*/
|
||||
|
||||
// Return Flow Temperature Predict 60s
|
||||
strcpy(aMetrics[u16MetricCounter].caMetricName, "return_flow_temperature_pred60");
|
||||
|
||||
Reference in New Issue
Block a user