Sub timUpdate_Tick
'Log("loop update")
UI.updateLabel(labStatus, others.SelfStatus)
Delay(1)
UI.updateLabel(timeTime, others.Date_Time)
Delay(1)
UI.updateLabel(mainTemp, NumberFormat(esp_bme280.TEMPERATURE, 1, 1))
Delay(1)
UI.updateLabel(mainPressure, NumberFormat(esp_bme280.PRESSURE, 1, 1))
Delay(1)
UI.updateLabel(mainHumidity, NumberFormat(esp_bme280.HUMIDITY, 1, 1))
Delay(1)
UI.updateLabel(mainSpeed, NumberFormat(orion_meteo.WindSpeedValue, 1, 2))
Delay(1)
UI.updateLabel(mainRain, NumberFormat(orion_meteo.RainValue, 1, 3))
Delay(1)
UI.updateLabel(mainWind, NumberFormat(orion_meteo.WindAzimuth, 1, 1))
Delay(1)
End Sub