コード例 #1
0
ファイル: Weather.php プロジェクト: Strubbl/Runalyze
 /**
  * Clear weather
  */
 public function clear()
 {
     $this->Temperature->setTemperature(null);
     $this->Condition->set(Condition::UNKNOWN);
     $this->WindSpeed->set(null);
     $this->WindDegree->set(null);
     $this->Humidity->set(null);
     $this->Pressure->set(null);
 }