2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-05-03 13:45:36 +00:00

added date alias for FHT80b set command

updated docs


git-svn-id: https://svn.fhem.de/fhem/trunk@753 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
borisneubert 2010-11-07 11:16:05 +00:00
parent 0e716840be
commit d7eb06a37f
4 changed files with 38 additions and 7 deletions

View File

@ -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

View File

@ -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;

View File

@ -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
<li>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 <code>fhtbuf</code> entry in the
<code><a href="#get">get</a></code> section.<br> 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.<br><br>
<li>time sets hour and minute to local time</li><br/>
<li>date sets year, month and date to local time</li><br/>
<li>refreshvalues is an alias for report1 255 report2 255</li><br/>
<li>All <code>*-temp</code> values need a temperature
as argument, which will be rounded to 0.5 Celsius.<br/>
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<br><br>
the actuator to OFF, value 30.5 set the actuator to ON</li><br>
<li><code>mode</code> is one of <code>auto, manual, holiday or
holiday_short.</code><br>

View File

@ -556,5 +556,22 @@ See <a href="USB.html">USB compendium</a> for help.
the CUL FHT subsystem, no need to unplug/replug the CUL device in case of
the aforementioned issue.
</ul>
<a name="faq22"></a>
<h4>22. My FHT80b device does not send temperature messages to my FHZ/CUL/CUN (any more).
What can I do?</h4>
<ul>
Please pair your FHT80b device withe FHZ/CUL/CUN as described in the
device manual.<br><br>
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:<br>
<code>
define myReminder at *00:40:00 set TYPE=FHT time
</code>
</ul>
</body>
</html>