Infinite canvas.
Infinite creativity.
Advanced Flow is smart home automation at its best,
featuring an infinite canvas packed with powerful tools.
Advanced Flow is a one-time purchase of £ 25. It's linked to your Homey Pro forever.
The Start-block empowers you to start an Advanced Flow from anywhere — that's as a favorite Flow, from another Flow or Advanced Flow, or from Siri Shortcuts, Alexa or Google Assistant.
Place a Delay-block between your cards to wait for some time before continuing to the next cards.
The Any-block waits for multiple incoming connections, and only continues if one is finished.
The All-block waits for multiple incoming connections, and only continues if they're all finished.
Create & run HomeyScripts from within an Advanced Flow. No need to create a separate script!
Return a Number, Text or Yes/No tag to use it in the subsequent Flow cards.
// Get Fibonacci at N.
function fibonacci(n) {
return n < 1 ? 0 : n <= 2 ? 1 : fibonacci(n - 1) + fibonacci(n - 2)
}
const result = fibonacci(parseInt(args[0]));
console.log(result);
return result;
55
-------------------
✅ Script Success
↩️ Returned: 55
And last but not least — the sticky note!
Notes help you write down your thoughts, so you remember when you come back later. You can even change their color!
Roses are red, violets are blue.
This is a small note.
I'm blue. Da ba dee da ba di.