Lines Matching full:sensor
62 const promises = sensors.map((sensor) => {
63 return api.get(sensor['@odata.id']).catch((error) => {
92 response.data.Members.map((sensor) => {
94 name: sensor.Name,
95 status: sensor.Status?.Health,
96 currentValue: sensor.Reading,
97 lowerCaution: sensor.Thresholds?.LowerCaution?.Reading,
98 upperCaution: sensor.Thresholds?.UpperCaution?.Reading,
99 lowerCritical: sensor.Thresholds?.LowerCritical?.Reading,
100 upperCritical: sensor.Thresholds?.UpperCritical?.Reading,
101 units: sensor.ReadingUnits,
117 Fans.forEach((sensor) => {
119 name: sensor.Name,
120 status: sensor.Status.Health,
121 currentValue: sensor.Reading,
122 lowerCaution: sensor.LowerThresholdNonCritical,
123 upperCaution: sensor.UpperThresholdNonCritical,
124 lowerCritical: sensor.LowerThresholdCritical,
125 upperCritical: sensor.UpperThresholdCritical,
126 units: sensor.ReadingUnits,
129 Temperatures.forEach((sensor) => {
131 name: sensor.Name,
132 status: sensor.Status.Health,
133 currentValue: sensor.ReadingCelsius,
134 lowerCaution: sensor.LowerThresholdNonCritical,
135 upperCaution: sensor.UpperThresholdNonCritical,
136 lowerCritical: sensor.LowerThresholdCritical,
137 upperCritical: sensor.UpperThresholdCritical,
149 const sensorData = Voltages.map((sensor) => {
151 name: sensor.Name,
152 status: sensor.Status.Health,
153 currentValue: sensor.ReadingVolts,
154 lowerCaution: sensor.LowerThresholdNonCritical,
155 upperCaution: sensor.UpperThresholdNonCritical,
156 lowerCritical: sensor.LowerThresholdCritical,
157 upperCritical: sensor.UpperThresholdCritical,