Temperature Measurement & MODBUS Integration #17
					 1 changed files with 21 additions and 3 deletions
				
			
		|  | @ -417,10 +417,28 @@ window.addEventListener("load", (_) => { | |||
|             } | ||||
| 
 | ||||
|             tempSEM.innerHTML = data.Temperatures.SEM + " °C"; | ||||
|             tempDPBottom.innerHTML = data.Temperatures.DPBottom + " °C"; | ||||
|             tempDPTop.innerHTML = data.Temperatures.DPTop + " °C"; | ||||
|             tempDPInlet.innerHTML = data.Temperatures.DPInlet + " °C"; | ||||
|             tempSEM.style = (data.Temperatures.SEM > 30) ? | ||||
|                 colors.highlightCaution : colors.default; | ||||
|             humiditySEM.innerHTML = data.Humidity.SEM + " %"; | ||||
|             humiditySEM.style = (data.Humidity.SEM > 59) ? | ||||
|                 colors.highlightCaution : colors.default; | ||||
| 
 | ||||
|             tempDPTop.innerHTML = data.Temperatures.DPTop + " °C"; | ||||
|             tempDPTop.style = (data.Temperatures.DPTop > 30) ? | ||||
|                 colors.highlightCaution : colors.default; | ||||
| 
 | ||||
|             tempDPInlet.innerHTML = data.Temperatures.DPInlet + " °C"; | ||||
|             tempDPInlet.style = (data.Temperatures.DPInlet > 30) ? | ||||
|                 colors.highlightCaution : colors.default; | ||||
| 
 | ||||
|             tempDPBottom.innerHTML = data.Temperatures.DPBottom + " °C"; | ||||
|             if (data.Temperatures.DPBottom > 200) { | ||||
|                 tempDPBottom.style = colors.highlightFault; | ||||
|             } else if (data.Temperatures.DPBottom > 50) { | ||||
|                 tempDPBottom.style = colors.highlightNeutral; | ||||
|             } else { | ||||
|                 tempDPBottom.style = colors.default; | ||||
|             } | ||||
| 
 | ||||
|             let t = []; | ||||
|             if (data.Feedback.RoughReached) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue