2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00

59_Twilight: light and state wrong after ss-weather event?

git-svn-id: https://svn.fhem.de/fhem/trunk@24606 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
Beta-User 2021-06-10 05:03:49 +00:00
parent 76f7d258b8
commit b8df4ca490

View File

@ -355,8 +355,10 @@ sub Twilight_HandleWeatherData {
readingsBulkUpdate( $hash, 'nextEvent', 'ss_indoor' ) ;
readingsBulkUpdate( $hash, 'nextEventTime', FmtTime( $hash->{TW}{ss_indoor}{TIME} ) ) ;
readingsBulkUpdate( $hash, 'aktEvent', 'ss_weather' );
readingsBulkUpdate( $hash, 'state', '8' );
readingsBulkUpdate( $hash, 'light', '4' );
#readingsBulkUpdate( $hash, 'state', '8' );
#readingsBulkUpdate( $hash, 'light', '4' );
readingsBulkUpdate( $hash, 'state', '7' );
readingsBulkUpdate( $hash, 'light', '5' );
}
}