mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 09:16:53 +00:00
59_WUup: added AqPM2.5, AqPM10; fixed documentation
git-svn-id: https://svn.fhem.de/fhem/trunk@16606 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
a723d651ca
commit
f2e5e9e023
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||||
# Do not insert empty lines here, update check depends on it.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- feature: 59_WUup: added AqPM2.5, AqPM10; fixed documentation
|
||||||
- bugfix: 73_ElectricityCalculator: missing notifydev implemented
|
- bugfix: 73_ElectricityCalculator: missing notifydev implemented
|
||||||
- bugfix: 73_GasCalculator: missing notifydev implemented
|
- bugfix: 73_GasCalculator: missing notifydev implemented
|
||||||
- bugfix: 73_WaterCalculator: missing notifydev implemented
|
- bugfix: 73_WaterCalculator: missing notifydev implemented
|
||||||
|
@ -32,7 +32,7 @@ use Time::HiRes qw(gettimeofday);
|
|||||||
use HttpUtils;
|
use HttpUtils;
|
||||||
use UConv;
|
use UConv;
|
||||||
|
|
||||||
my $version = "0.9.7";
|
my $version = "0.9.8";
|
||||||
|
|
||||||
# Declare functions
|
# Declare functions
|
||||||
sub WUup_Initialize($);
|
sub WUup_Initialize($);
|
||||||
@ -66,7 +66,7 @@ sub WUup_Initialize($) {
|
|||||||
. "wubaromin wudailyrainin wudewptf wuhumidity wurainin wusoilmoisture "
|
. "wubaromin wudailyrainin wudewptf wuhumidity wurainin wusoilmoisture "
|
||||||
. "wusoiltempf wusolarradiation wutempf wuUV wuwinddir wuwinddir_avg2m "
|
. "wusoiltempf wusolarradiation wutempf wuUV wuwinddir wuwinddir_avg2m "
|
||||||
. "wuwindgustdir wuwindgustdir_10m wuwindgustmph wuwindgustmph_10m "
|
. "wuwindgustdir wuwindgustdir_10m wuwindgustmph wuwindgustmph_10m "
|
||||||
. "wuwindspdmph_avg2m wuwindspeedmph "
|
. "wuwindspdmph_avg2m wuwindspeedmph wuAqPM2.5 wuAqPM10 "
|
||||||
. $readingFnAttributes;
|
. $readingFnAttributes;
|
||||||
$hash->{VERSION} = $version;
|
$hash->{VERSION} = $version;
|
||||||
}
|
}
|
||||||
@ -354,6 +354,7 @@ sub WUup_receive($) {
|
|||||||
# 2017-10-19 added set-command "update"
|
# 2017-10-19 added set-command "update"
|
||||||
# 2018-03-19 solarradiation calculated from lux to W/m² (thanks to dieter114)
|
# 2018-03-19 solarradiation calculated from lux to W/m² (thanks to dieter114)
|
||||||
# 2018-04-10 added attribute round
|
# 2018-04-10 added attribute round
|
||||||
|
# 2018-04-13 added AqPM2.5 and AqPM10
|
||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
@ -422,24 +423,26 @@ sub WUup_receive($) {
|
|||||||
Solarradiation takes readings in lux and converts them to W/m²<br/><br/>
|
Solarradiation takes readings in lux and converts them to W/m²<br/><br/>
|
||||||
<u>The following information is supported:</u>
|
<u>The following information is supported:</u>
|
||||||
<ul>
|
<ul>
|
||||||
<li>winddir - [0-360 instantaneous wind direction]</li>
|
<li>winddir - instantaneous wind direction (0-360) [°]</li>
|
||||||
<li>windspeedmph - [mph instantaneous wind speed]</li>
|
<li>windspeedmph - instantaneous wind speed ·[mph]</li>
|
||||||
<li>windgustmph - [mph current wind gust, using software specific time period]</li>
|
<li>windgustmph - current wind gust, using software specific time period [mph]</li>
|
||||||
<li>windgustdir - [0-360 using software specific time period]</li>
|
<li>windgustdir - current wind direction, using software specific time period [°]</li>
|
||||||
<li>windspdmph_avg2m - [mph 2 minute average wind speed mph]</li>
|
<li>windspdmph_avg2m - 2 minute average wind speed [mph]</li>
|
||||||
<li>winddir_avg2m - [0-360 2 minute average wind direction]</li>
|
<li>winddir_avg2m - 2 minute average wind direction [°]</li>
|
||||||
<li>windgustmph_10m - [mph past 10 minutes wind gust mph]</li>
|
<li>windgustmph_10m - past 10 minutes wind gust [mph]</li>
|
||||||
<li>windgustdir_10m - [0-360 past 10 minutes wind gust direction]</li>
|
<li>windgustdir_10m - past 10 minutes wind gust direction [°]</li>
|
||||||
<li>humidity - [% outdoor humidity 0-100%]</li>
|
<li>humidity - outdoor humidity (0-100) [%]</li>
|
||||||
<li>dewptf- [F outdoor dewpoint F]</li>
|
<li>dewptf- outdoor dewpoint [F]</li>
|
||||||
<li>tempf - [F outdoor temperature]</li>
|
<li>tempf - outdoor temperature [F]</li>
|
||||||
<li>rainin - [rain inches over the past hour)] -- the accumulated rainfall in the past 60 min</li>
|
<li>rainin - rain over the past hour -- the accumulated rainfall in the past 60 min [in]</li>
|
||||||
<li>dailyrainin - [rain inches so far today in local time]</li>
|
<li>dailyrainin - rain so far today in local time [in]</li>
|
||||||
<li>baromin - [barometric pressure inches]</li>
|
<li>baromin - barometric pressure [inHg]</li>
|
||||||
<li>soiltempf - [F soil temperature]</li>
|
<li>soiltempf - soil temperature [F]</li>
|
||||||
<li>soilmoisture - [%]</li>
|
<li>soilmoisture - soil moisture [%]</li>
|
||||||
<li>solarradiation - [W/m²]</li>
|
<li>solarradiation - solar radiation[W/m²]</li>
|
||||||
<li>UV - [index]</li>
|
<li>UV - [index]</li>
|
||||||
|
<li>AqPM2.5 - PM2.5 mass [µg/m³]</li>
|
||||||
|
<li>AqPM10 - PM10 mass [µg/m³]</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -522,24 +525,26 @@ sub WUup_receive($) {
|
|||||||
Solarradiation nimmt Readings in lux an und rechnet diese in W/m² um.<br/><br/>
|
Solarradiation nimmt Readings in lux an und rechnet diese in W/m² um.<br/><br/>
|
||||||
<u>Unterstützte Angaben</u>
|
<u>Unterstützte Angaben</u>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Winddir - [0-360 momentane Windrichtung]</li>
|
<li>winddir - momentane Windrichtung (0-360) [°]</li>
|
||||||
<li>Windspeedmph - [mph momentane Windgeschwindigkeit]</li>
|
<li>windspeedmph - momentane Windgeschwindigkeit [mph]</li>
|
||||||
<li>Windgustmph - [mph aktuellen Böe, mit Software-spezifischem Zeitraum]</li>
|
<li>windgustmph - aktuelle Böe, mit Software-spezifischem Zeitraum [mph]</li>
|
||||||
<li>Windgustdir - [0-360 mit Software-spezifischer Zeit]</li>
|
<li>windgustdir - aktuelle Böenrichtung, mit Software-spezifischer Zeitraum [°]</li>
|
||||||
<li>Windspdmph_avg2m - [mph durchschnittliche Windgeschwindigkeit innerhalb 2 Minuten]</li>
|
<li>windspdmph_avg2m - durchschnittliche Windgeschwindigkeit innerhalb 2 Minuten [mph]</li>
|
||||||
<li>Winddir_avg2m - [0-360 durchschnittliche Windrichtung innerhalb 2 Minuten]</li>
|
<li>winddir_avg2m - durchschnittliche Windrichtung innerhalb 2 Minuten [°]</li>
|
||||||
<li>Windgustmph_10m - [mph Böen der vergangenen 10 Minuten]</li>
|
<li>windgustmph_10m - Böen der vergangenen 10 Minuten [mph]</li>
|
||||||
<li>Windgustdir_10m - [0-360 Richtung der Böen der letzten 10 Minuten]</li>
|
<li>windgustdir_10m - Richtung der Böen der letzten 10 Minuten [°]</li>
|
||||||
<li>Feuchtigkeit - [% Außenfeuchtigkeit 0-100%]</li>
|
<li>humidity - Luftfeuchtigkeit im Freien (0-100) [%]</li>
|
||||||
<li>Dewptf- [F Taupunkt im Freien]</li>
|
<li>dewptf- Taupunkt im Freien [F]</li>
|
||||||
<li>Tempf - [F Außentemperatur]</li>
|
<li>tempf - Außentemperatur [F]</li>
|
||||||
<li>Rainin - [in Regen in der vergangenen Stunde]</li>
|
<li>rainin - Regen in der vergangenen Stunde [in]</li>
|
||||||
<li>Dailyrainin - [in Regenmenge bisher heute]</li>
|
<li>dailyrainin - Regenmenge bisher heute [in]</li>
|
||||||
<li>Baromin - [inHg barometrischer Druck]</li>
|
<li>baromin - barometrischer Druck [inHg]</li>
|
||||||
<li>Soiltempf - [F Bodentemperatur]</li>
|
<li>soiltempf - Bodentemperatur [F]</li>
|
||||||
<li>Bodenfeuchtigkeit - [%]</li>
|
<li>soilmoisture - Bodenfeuchtigkeit [%]</li>
|
||||||
<li>Solarradiation - [W/m²]</li>
|
<li>solarradiation - Sonneneinstrahlung [W/m²]</li>
|
||||||
<li>UV - [Index]</li>
|
<li>UV - [Index]</li>
|
||||||
|
<li>AqPM2.5 - Feinstaub PM2,5 [µg/m³]</li>
|
||||||
|
<li>AqPM10 - Feinstaub PM10 [µg/m³]</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user