Infinite canvas.
Infinite creativity.
Advanced Flow is smart home automation at its best,
with an infinite canvas packed with powerful tools.
Advanced Flow is a one-time purchase of A$ 39. 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.
Since the launch of the new Homey (cloud service) & Homey Bridge, we have rebranded all previously sold Homeys (2016 — 2019) as Homey Pro. So if you have an older Homey (white sphere with three metal feet), yours is now considered part of the Homey Pro family. Which also means that you can purchase Advanced Flow.
Advanced Flow is available as a one-time purchase — meaning you only pay for it once and can enjoy it forever.
Access to Advanced Flow is linked to a specific Homey Pro. Even after a factory reset or when you’re reselling your device, Advanced Flow remains available on that specific device. When selling, consider your Homey Pro to be worth more when it has an Advanced Flow license.
After purchasing Advanced Flow, the license is linked to a specific device. If you purchase a new Homey Pro, you will need to purchase a new Advanced Flow license.
If you are replacing Homey Pro due to a defect, please contact our support team.
Advanced Flows can be created & edited on a Mac or PC in the Homey Web App. Simply put, you need a bigger screen to truly enjoy Advanced Flow. You can however rename, favorite and delete Advanced Flows in the Homey Mobile App.
Advanced Flow is currently only available for Homey Pro as a one-time purchase.
Yes. An Advanced Flow can be started from the mobile app by adding a Start-block to the Advanced Flow. Additionally, you can favorite your Advanced Flow to start it from your home screen and the iOS/Android widget.
Yes. An Advanced Flow can be started from Alexa, Google Assistant or Siri Shortcuts by adding a Start-block to the Advanced Flow and adding it to your Favorite Flows.
After purchasing Advanced Flow, the license is linked to a specific device. If you have more than one Homey Pro, you will need to purchase a new Advanced Flow license for each device.
Don’t worry — Homey Pro has always received free updates and will continue to receive free updates. Big new features like Advanced Flow might be paid, but they’ll always be optional.
Yes, an Advanced Flow can have multiple When-cards on the same canvas. Additionally, you can even place them next to a Play-block. Grouping Flows with similar functionality just got a lot easier!