diff --git a/fhem/CHANGED b/fhem/CHANGED index 4b17b5eb6..70e3fe8c3 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,7 @@ # 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: 73_AutoShuttersControl: change default value for rain and wind + protection, add rain protection to commandref - change: 73_AutoShuttersControl: remove prototyp, add weekendholiday for brightness, code style - bugfix: 73_AutoShuttersControl: fix _IsDay Fn diff --git a/fhem/FHEM/73_AutoShuttersControl.pm b/fhem/FHEM/73_AutoShuttersControl.pm index 05a1f71e0..a21ddc5b3 100644 --- a/fhem/FHEM/73_AutoShuttersControl.pm +++ b/fhem/FHEM/73_AutoShuttersControl.pm @@ -6227,13 +6227,13 @@ sub getWindMin { sub getWindProtection { my $self = shift; - return AttrVal( $self->{shuttersDev}, 'ASC_WindProtection', 'on' ); + return AttrVal( $self->{shuttersDev}, 'ASC_WindProtection', 'off' ); } sub getRainProtection { my $self = shift; - return AttrVal( $self->{shuttersDev}, 'ASC_RainProtection', 'on' ); + return AttrVal( $self->{shuttersDev}, 'ASC_RainProtection', 'off' ); } sub getModeUp { @@ -7511,6 +7511,9 @@ sub getBlockAscDrivesAfterManual {
  • ASC_WindProtection on|off - Shutter is protected by the wind protection. Defaults to off.
  • +
  • ASC_RainProtection on|off - Shutter is protected by the rain protection. Defaults + to off. +
  • ASC_Roommate_Device - Comma separated list of ROOMMATE devices, representing the inhabitants of the room to which the shutter belongs. Especially useful for bedrooms. Defaults to none. @@ -7953,7 +7956,8 @@ sub getBlockAscDrivesAfterManual {
  • ASC_PrivacyUp_Pos - Position den Rollladens für den morgendlichen Sichtschutz (default: 50) !!!Verwendung von Perlcode ist möglich, dieser muss in {} eingeschlossen sein. Rückgabewert muss eine positive Zahl/Dezimalzahl sein!!!
  • ASC_PrivacyDown_Pos - Position den Rollladens für den abendlichen Sichtschutz (default: 50) !!!Verwendung von Perlcode ist möglich, dieser muss in {} eingeschlossen sein. Rückgabewert muss eine positive Zahl/Dezimalzahl sein!!!
  • ASC_ExternalTrigger - DEVICE:READING VALUEACTIVE:VALUEINACTIVE POSACTIVE:POSINACTIVE, Beispiel: "WohnzimmerTV:state on:off 66:100" bedeutet das wenn ein "state:on" Event kommt soll das Rollo in Position 66 fahren, kommt ein "state:off" Event soll es in Position 100 fahren. Es ist möglich die POSINACTIVE weg zu lassen dann fährt das Rollo in LastStatus Position.
  • -
  • ASC_WindProtection - on/off - soll der Rollladen beim Regenschutz beachtet werden. on=JA, off=NEIN.
  • +
  • ASC_WindProtection - on/off - soll der Rollladen beim Windschutz beachtet werden. on=JA, off=NEIN. (default off)
  • +
  • ASC_RainProtection - on/off - soll der Rollladen beim Regenschutz beachtet werden. on=JA, off=NEIN. (default off)
  • ASC_Roommate_Device - mit Komma getrennte Namen des/der Roommate Device/s, welche den/die Bewohner des Raumes vom Rollladen wiedergibt. Es macht nur Sinn in Schlaf- oder Kinderzimmern (default: none)
  • ASC_Adv - on/off bei on wird das runterfahren des Rollos während der Weihnachtszeit (1. Advent bis 6. Januar) ausgesetzt! Durch set ASCDEVICE advDriveDown werden alle ausgesetzten Fahrten nachgeholt.
  • ASC_Roommate_Reading - das Reading zum Roommate Device, welches den Status wieder gibt (default: state)