diff --git a/fhem/FHEM/10_ZWave.pm b/fhem/FHEM/10_ZWave.pm
index 377793595..08b0fa85f 100644
--- a/fhem/FHEM/10_ZWave.pm
+++ b/fhem/FHEM/10_ZWave.pm
@@ -1858,6 +1858,10 @@ ZWave_meterParse($$)
$meter_type_text = "power" if ($unit_text eq "W");
$meter_type_text = "voltage" if ($unit_text eq "V");
$meter_type_text = "current" if ($unit_text eq "A");
+ if ($unit_text eq "PowerFactor") {
+ $meter_type_text = "powerFactor";
+ $unit_text = "";
+ }
my $mv = hex(substr($v3, 0, 2*$size));
$mv = ($mv >> 31 ? $mv - 2 ** 32 : $mv) if($size == 4);
@@ -6253,7 +6257,7 @@ ZWave_entryControlParse($$)
=item summary_DE Anbindung von ZWave Geräten
=begin html
-
+
ZWave
This module is used to control ZWave devices via FHEM, see
-
+
Define
define <name> ZWave <homeId> <id> [classes]
@@ -6296,7 +6300,7 @@ ZWave_entryControlParse($$)
corresponding readings will be updated.
-
+
Set
@@ -6907,7 +6911,7 @@ ZWave_entryControlParse($$)
-
+
Get
All
@@ -7358,18 +7362,18 @@ ZWave_entryControlParse($$)
-
+
Attributes
- IODev
- - WNMI_delay
+ - WNMI_delay
This attribute sets the time delay between the last message sent to an
WakeUp device and the sending of the WNMI Message
(WakeUpNoMoreInformation) that will set the device to sleep mode. Value
is in seconds, subseconds my be specified. Values outside of 0.2-5.0 are
probably harmful.
- - classes
+ - classes
This attribute is needed by the ZWave module, as the list of the possible
set/get commands depends on it. It contains a space separated list of
class names (capital letters).
@@ -7379,11 +7383,11 @@ ZWave_entryControlParse($$)
- dummy
- do_not_notify
- dummy
- - eventForRaw
+ - eventForRaw
Generate an an additional event for the RAW message. Can be used if
someone fears that critical notifies won't work, if FHEM changes the event
text after an update.
- - extendedAlarmReadings
+ - extendedAlarmReadings
Some devices support more than one alarm type, this attribute
selects which type of reading is used for the reports of the ALARM
(or NOTIFICATION) class:
@@ -7402,7 +7406,7 @@ ZWave_entryControlParse($$)
if really needed as duplicate events are generated.
- - generateRouteInfoEvents
+ - generateRouteInfoEvents
if set (to 1) a timeToCb event with additional information regarding the
controller to device communication is generated, after sending data to
the device.
@@ -7418,16 +7422,16 @@ ZWave_entryControlParse($$)
- ignore
- - ignoreDupMsg
+ - ignoreDupMsg
Experimental: if set (to 1), ignore duplicate wakeup messages, or
multiple responses to a single get due to missing lowlevel ACK.
- neighborListPos
- - noExplorerFrames
+ - noExplorerFrames
turn off the use of Explorer Frames
- - noWakeupForApplicationUpdate
+
- noWakeupForApplicationUpdate
some devices (notable the Aeotec Multisensor 6) are only awake after an
APPLICATION UPDATE telegram for a very short time. If this attribute is
@@ -7436,17 +7440,17 @@ ZWave_entryControlParse($$)
- readingFnAttributes
- - secure_classes
+ - secure_classes
This attribute is the result of the "set DEVICE secSupportedReport"
command. It contains a space seperated list of the the command classes
that are supported with SECURITY.
- - setExtensionsEvent
+ - setExtensionsEvent
If set, the event will contain the command implemented by SetExtensions
(e.g. on-for-timer 10), else the executed command (e.g. on).
- - setList
+ - setList
Some devices interpret SENSOR_MULTILEVEL events, e.g. to react to an
external temperature sensor. To enable FHEM to send such messages,
specify the list of the desired readings, comma separated, with an sml_
@@ -7460,24 +7464,24 @@ ZWave_entryControlParse($$)
- showtime
- - vclasses
+ - vclasses
This is the result of the "get DEVICE versionClassAll" command, and
contains the version information for each of the supported classes.
- - useCRC16
+ - useCRC16
Experimental: if a device supports CRC_16_ENCAP, then add CRC16 to the
command. Note: this is not available to SECURITY ENABLED devices, as
security has its own CRC.
- - useMultiCmd
+ - useMultiCmd
Experimental: if a device supports MULTI_CMD and WAKE_UP, then pack
multiple get messages on the SendStack into a single MULTI_CMD to save
radio transmissions.
- - zwaveRoute
+ - zwaveRoute
space separated list of (ZWave) device names. They will be used in the
given order to route messages from the controller to this device. Specify
them in the order from the controller to the device. Do not specify the
@@ -7487,7 +7491,7 @@ ZWave_entryControlParse($$)
-
+
Generated events: