mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
70_Klafs.pm: Klafs Sauna control
git-svn-id: https://svn.fhem.de/fhem/trunk@28319 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
d81bb4f1d9
commit
7893cff78d
@ -1,5 +1,6 @@
|
||||
# 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.
|
||||
- bugfix: 70_Klafs: minor bugfix for Reading RemainTime
|
||||
- feature: 10_KNX: additional dpt14 subtypes, Forum #122582
|
||||
- bugfix: 00_KNXIO: fix problem IO-write queing, Forum #127792
|
||||
- bugfix: 74_AutomowerConnect: Commandref corrections, fix start up warning
|
||||
|
@ -440,7 +440,7 @@ sub klafs_getStatusResponse {
|
||||
|
||||
$entries->{statusMessage} //= '';
|
||||
$entries->{currentTemperature} = '0' if $entries->{currentTemperature} eq '141';
|
||||
$entries->{RemainTime} = sprintf("%2.2d:%2.2d" , $entries->{bathingHours}, $entries->{bathingMinutes});
|
||||
$entries->{RemainTime} = sprintf("%2.2d:%2.2d" , $entries->{remainingBathingHours}, $entries->{remainingBathingMinutes});
|
||||
my $modus = $entries->{saunaSelected} eq q{true} ? 'Sauna'
|
||||
: $entries->{sanariumSelected} eq q{true} ? 'Sanarium'
|
||||
: $entries->{irSelected} eq q{true} ? 'Infrared'
|
||||
@ -1309,18 +1309,18 @@ __END__
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Restzeit</b></td>
|
||||
<td>Remaining bathing time. Value from bathingHours and bathingMinutes</td>
|
||||
<td>Remaining bathing time. Value from remainingBathingHours and remainingBathingMinutes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>antiforgery_date</b> </td>
|
||||
<td>Date of the antiforgery cookie. This is generated when the program is switched on.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>bathingHours</b> </td>
|
||||
<td><b>remainingBathingHours</b> </td>
|
||||
<td>Hour of remaining bath time</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>bathingMinutes</b></td>
|
||||
<td><b>remainingBathingMinutes</b></td>
|
||||
<td>Minute of remaining bath time</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -1574,18 +1574,18 @@ __END__
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Restzeit</b></td>
|
||||
<td>Restliche Badezeit. Wert aus bathingHours und bathingMinutes</td>
|
||||
<td>Restliche Badezeit. Wert aus remainingBathingHours und remainingBathingMinutes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>antiforgery_date</b> </td>
|
||||
<td>Datum des Antiforgery Cookies. Dieses wird beim Einschalten erzeugt.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>bathingHours</b> </td>
|
||||
<td><b>remainingBathingHours</b> </td>
|
||||
<td>Stunde der Restbadezeit</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>bathingMinutes</b></td>
|
||||
<td><b>remainingBathingMinutes</b></td>
|
||||
<td>Minute der Restbadezeit</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
Loading…
Reference in New Issue
Block a user