Automation - depend on weather

I’d like to set automation which will open fibaro roller shutter 3 at specific time only if the weather is not stormy\rainy this day. is it possible ?
Thanks!

I know everyone promotes Webcore (including me), but that would be really easy using Webcore. However, probably not worth the learning curve just for that single task.

I don’t know Webcore, probably will need to learn a lot on it to use. Is there a faster quicker way to make this work?

IDK how much easier this will be, but you can have IFTTT turn on/off a “Bad Weather” virtual switch. Then the automation in ST would be simple “open the blinds at 5:00am only if the bad weather switch is off”

Wunderground IFTTT trigger:

I need more help with it I don’t know IFTTT

I do something similar using webcore.

/**************************************************************/
/* webCoRE Weather Shade Piston                               */
/**************************************************************/
/* Author     : ffuentes                                      */
/* Created    : 9/6/2017, 1:28:50 PM                          */
/* Modified   : 3/18/2019, 4:53:29 PM                         */
/* Build      : 14                                            */
/* UI version : v0.3.10a.20190223                             */
/**************************************************************/
 
execute
if
Meteobridge Weather Station's temperature rises to or above 98°F
and
Time is between 12:00:00 PM and 4:00:00 PM
then
with
Master Bedroom Shades
do
Set level to 0%;
Send PUSH notification "Weather is over 98. Closing Master Bedroom Shade.";
end with;
with
Game Room Fan
do
Turn on (only while Home or Away);
end with;
else
if
Meteobridge Weather Station's temperature changes to 88°F
and
Time is between 12:00:00 PM and 4:00:00 PM
and
Any of Plex for LG (webOS 05.30.02)'s or ROKU Master's status is not 'playing'
then
with
Master Bedroom Shades
do
Set level to 41% (only while Home);
Send PUSH notification "Weather is back to normal. Resuming Master Bedroom Shade.";
end with;
end if;
end if;
end execute;