-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Not a bug.
Cloud suppression fires when any of four signals indicate poor conditions:
In your case, that last one triggered (90% cloud coverage), which is exactly right. If you ever want For details, see the climate status sensor attributes section of the Entities wiki page. |
Beta Was this translation helpful? Give feedback.
-
|
Glad adding the weather entity sorted it. Just to close the loop for anyone who finds this later: |
Beta Was this translation helpful? Give feedback.



Not a bug.
is_sunnyand the cloud coverage check are two separate, independent signals.is_sunnytracks whether your weather entity's state matches the list of "sunny weather conditions" you've configured (likesunny,partlycloudy, etc.). It has nothing to do with the cloud coverage percentage sensor. Since you only configured the cloud percent entity — no weather entity with conditions — there's nothing foris_sunnyto check against, so it defaults totrue.Cloud suppression fires when any of four signals indicate poor conditions:
In your case, tha…