export metrics

This commit is contained in:
2024-12-07 22:46:38 +01:00
parent 311ab2db2f
commit 873d63e6fa
7 changed files with 307 additions and 200 deletions

View File

@ -16,8 +16,8 @@ Control <|-- HTTP_Metrics
Safety <|-- HTTP_Metrics
class Inputs{
+ initInputs()
-loop()
+initInputs()
-taskInput()
+getChamberTemperature()
+getOutdoorTemperature()
+getInletFlowTemperature()
@ -34,22 +34,24 @@ Safety <|-- HTTP_Metrics
}
class Control{
+loop()
+taskControl()
-timetable
}
class Safety{
+ loop()
+ setSafeState()
- checkSensorSanity()
+ getSafetyState()
+taskSafety()
+setSafeState()
-checkSensorSanity()
+getSafetyState()
}
class HTTP_Metrics{
- metrics
+ event_handler()
+ connect_wifi()
+ setMetrics()
class Metrics{
+initMetrics()
-taskMetrics()
-metrics
+event_handler()
+connect_wifi()
+setMetrics()
}
```