automation if conditional functions

I want to complete within blynk.console
I need blynk.console for automation if conditional functions

example

if(sunset == true){
if(datastreamA == HIGH){
datastreamB = HIGH;
} else {
datastreamB = LOW;
}
}

Automation doesn’t support multiple conditions. Use coding instead.

1 Like