mirror of
https://github.com/agdsn/ancient-weatherstation.git
synced 2026-06-19 23:07:59 +00:00
chart:
change fontsize frontend: wind-module fixed git-svn-id: file:///home/jan/tmp/wetterstation/trunk@108 dd492736-c11a-0410-ad51-8c26713eaf7f
This commit is contained in:
@@ -163,7 +163,7 @@ class Wind{
|
||||
|
||||
/* --- Funktionen, die aufgerufen werden um die geholeten Werte auszugeben --- */
|
||||
function get_now_val(){
|
||||
return $this->nowWind;
|
||||
return round($this->nowWind * 0.1, 1);
|
||||
}
|
||||
|
||||
function get_now_dir(){
|
||||
@@ -179,7 +179,7 @@ class Wind{
|
||||
}
|
||||
|
||||
function get_av_value(){
|
||||
return $this->avVal;
|
||||
return round($this->avVal * 0.1, 1);
|
||||
}
|
||||
|
||||
function get_av_interval(){
|
||||
@@ -191,7 +191,7 @@ class Wind{
|
||||
}
|
||||
|
||||
function get_max_val(){
|
||||
return $this->maxWind;
|
||||
return round($this->maxWind * 0.1, 1);
|
||||
}
|
||||
|
||||
function get_max_dir(){
|
||||
|
||||
Reference in New Issue
Block a user