diff --git a/fhem/CHANGED b/fhem/CHANGED
index 48ad8fc91..65dcb9e07 100644
--- a/fhem/CHANGED
+++ b/fhem/CHANGED
@@ -8,6 +8,7 @@
- feature: decode CUL uptime
- feature: USB doc changes, FHZ initFS20_02/stopHMS parameters by Andreas.
- feature: CUL_HM (experimental) for HomeMatic devices.
+ - feature: added date alias for FHT80b (Boris)
- 2010-08-15 (5.0)
- **NOTE*: The default installation path is changed to satisfy lintian
diff --git a/fhem/FHEM/11_FHT.pm b/fhem/FHEM/11_FHT.pm
index 26b68acd5..222666fd1 100755
--- a/fhem/FHEM/11_FHT.pm
+++ b/fhem/FHEM/11_FHT.pm
@@ -187,6 +187,11 @@ FHT_Set($@)
my @t = localtime;
splice(@a,$i,1,("hour",$t[2],"minute",$t[1]));
}
+
+ if($a[$i] eq "date") {
+ my @t = localtime;
+ splice(@a,$i,1,("year",$t[5]-100,"month",$t[4]+1,"day",$t[3]));
+ }
}
my $ncmd = 0;
@@ -537,7 +542,7 @@ FHT_Parse($$)
if(substr($msg,24,1) eq "7") { # Do not store FHZ acks.
$cmd = "FHZ:$cmd";
-
+
} else {
$def->{READINGS}{$cmd}{TIME} = $tn;
$def->{READINGS}{$cmd}{VAL} = $val;
diff --git a/fhem/docs/commandref.html b/fhem/docs/commandref.html
index 6a89db8dd..003ae00a7 100644
--- a/fhem/docs/commandref.html
+++ b/fhem/docs/commandref.html
@@ -1348,10 +1348,12 @@ A line ending with \ will be concatenated with the next one, so long lines
desired-temp
day-temp night-temp
report1 report2
+ refreshvalues
mode
holiday1 holiday2 # Not verified
manu-temp # No clue what it does.
year month day hour minute
+ time date
lowtemp-offset # Alarm-Temp.-Differenz
windowopen-temp
mon-from1 mon-to1 mon-from2 mon-to2
@@ -1407,17 +1409,23 @@ A line ending with \ will be concatenated with the next one, so long lines
The FHT is very economical (or lazy), it accepts one message from the
FHZ1x00 every 115+x seconds, where x depends on the housecode. Don't
- be surprized if your command is only accepted 10 minutes later by the
+ be surprised if your command is only accepted 10 minutes later by the
device. FHT commands are buffered in the FHZ1x00/CUL till they are
sent to the FHT, see the related fhtbuf
entry in the
get
section.
You can send up to 8
commands in one message at once to the FHT if you specify them all as
arguments to the same set command, see the example above.
+ time sets hour and minute to local time
+
+ date sets year, month and date to local time
+
+ refreshvalues is an alias for report1 255 report2 255
+
All *-temp
values need a temperature
as argument, which will be rounded to 0.5 Celsius.
Temperature values must between 5.5 and 30.5 Celsius. Value 5.5 sets
- the actuator to OFF, value 30.5 set the actuator to ON
+ the actuator to OFF, value 30.5 set the actuator to ON
mode
is one of auto, manual, holiday or
holiday_short.
@@ -1604,7 +1612,7 @@ A line ending with \ will be concatenated with the next one, so long lines
Set
- set <name> valve <value;>
- Set the valve to the given value (in percent, from 0 to 100).
+ Set the valve to the given value (in percent, from 0 to 100).
- set <name> pair
Pair the valve with the CUL.
@@ -1616,7 +1624,7 @@ A line ending with \ will be concatenated with the next one, so long lines
Get
- get <name> valve
- Read back the valve position from the CUL FHT buffer, and convert it to percent (from 0 to 100).
+ Read back the valve position from the CUL FHT buffer, and convert it to percent (from 0 to 100).
@@ -1669,7 +1677,7 @@ A line ending with \ will be concatenated with the next one, so long lines
The default values are around 25.5, 3 and 5.88, you probably need to tune
these values. They can be also changed later.
-
+
Examples:
define wz_pid PID wz_th wz_fht8v
@@ -3132,7 +3140,7 @@ A line ending with \ will be concatenated with the next one, so long lines
define <name> WEBIO <ip-address> <port> <delay>
Defines an Web-IO device (Box with 2 Analog-In/Out 0..10V, www.wut.de) via ip address. The status of the device is also pooled (delay interval).
-
+
Examples:
diff --git a/fhem/docs/faq.html b/fhem/docs/faq.html
index 8b1cc13f9..a0b1ef7e1 100644
--- a/fhem/docs/faq.html
+++ b/fhem/docs/faq.html
@@ -556,5 +556,22 @@ See USB compendium for help.
the CUL FHT subsystem, no need to unplug/replug the CUL device in case of
the aforementioned issue.
+
+
+22. My FHT80b device does not send temperature messages to my FHZ/CUL/CUN (any more).
+What can I do?
+
+ Please pair your FHT80b device withe FHZ/CUL/CUN as described in the
+ device manual.
+ It is advisable to remind the FHT80b devices from time to time that there is
+ a FHZ/CUL/CUN device to report to. Adding the following line to your fhem config
+ file helps in most cases:
+
+ define myReminder at *00:40:00 set TYPE=FHT time
+
+
+
+
+